Skip to content

Commit

Permalink
suppress accepted warnings around new code
Browse files Browse the repository at this point in the history
  • Loading branch information
jpdahlke committed Dec 24, 2024
1 parent 8d4dff5 commit 077bcb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/emissary/pickup/WorkSpace.java
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ public void stop() {
/**
* Shut down services that were started here
*/
@SuppressWarnings("CatchingUnchecked")
public void shutDown() {
stop();
if (this.jettyStartedHere) {
Expand Down
1 change: 1 addition & 0 deletions src/main/java/emissary/server/EmissaryServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public class EmissaryServer {

private final EmissaryNode emissaryNode;

@SuppressWarnings("NonFinalStaticField")
private static EmissaryServer emissaryServer;

private EmissaryServer(ServerCommand cmd) {
Expand Down

0 comments on commit 077bcb6

Please sign in to comment.