Skip to content

Commit

Permalink
Fix PMD/checkstyle warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kohlschuetter committed Jul 27, 2023
1 parent 4b9d4df commit 956ef0d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
@SuppressFBWarnings({
"THROWS_METHOD_THROWS_CLAUSE_THROWABLE", "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION"})
public class FinalizeTestClient {
@SuppressFBWarnings({"RV_RETURN_VALUE_IGNORED"})
@SuppressWarnings("PMD.DoNotCallGarbageCollectionExplicitly")
@SuppressFBWarnings({"RV_RETURN_VALUE_IGNORED", "DM_GC"})
public static void main(String[] args) throws Exception {
String socketType = System.getProperty("test.junixsocket.socket.type", "");
String socketName = System.getProperty("test.junixsocket.socket", "");
Expand Down

0 comments on commit 956ef0d

Please sign in to comment.