Skip to content

Commit

Permalink
Apply auto-formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Sep 26, 2023
1 parent df039c1 commit 48ae650
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 61 deletions.
2 changes: 1 addition & 1 deletion common/src/main/java/org/openjax/esc/Realm.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public boolean equals(final Object obj) {
return true;

if (!(obj instanceof Realm))
return false;
return false;

final Realm that = (Realm)obj;
return Objects.equals(name, that.name) && credentials.equals(that.credentials) && roles.equals(that.roles);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* A {@link Filter} intended to be used for the purpose of catching uncaught exceptions that are thrown in the servlet execution
* chain.
*/
@WebFilter(filterName="UncaughtServletExceptionFilter", urlPatterns="/*", dispatcherTypes=DispatcherType.REQUEST)
@WebFilter(filterName = "UncaughtServletExceptionFilter", urlPatterns = "/*", dispatcherTypes = DispatcherType.REQUEST)
class UncaughtServletExceptionFilter implements Filter {
private final UncaughtServletExceptionHandler uncaughtServletExceptionHandler;

Expand Down
Loading

0 comments on commit 48ae650

Please sign in to comment.