Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
aureamunoz committed Dec 9, 2024
1 parent f71652b commit 38ab4fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -331,14 +331,13 @@ public Optional<ResourceClass> createEndpoints(ClassInfo classInfo, boolean cons
//kinda bogus, but we just ignore failed interfaces for now
//they can have methods that are not valid until they are actually extended by a concrete type
log.debug("Ignoring interface " + classInfo.name(), e);
return Optional.empty();
} else {
throw new RuntimeException(e);
}

}
return Optional.empty();
}
return Optional.empty();

}

private String sanitizePath(String path) {
Expand Down

0 comments on commit 38ab4fd

Please sign in to comment.