Skip to content

Commit

Permalink
Fix PMD/checkstyle warnings, take two
Browse files Browse the repository at this point in the history
  • Loading branch information
kohlschuetter committed Jul 27, 2023
1 parent 956ef0d commit f78b401
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"THROWS_METHOD_THROWS_CLAUSE_THROWABLE", "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION"})
public class FinalizeTestClient {
@SuppressWarnings("PMD.DoNotCallGarbageCollectionExplicitly")
@SuppressFBWarnings({"RV_RETURN_VALUE_IGNORED", "DM_GC"})
@SuppressFBWarnings({"RV_RETURN_VALUE_IGNORED", "DM_GC", "UC_USELESS_OBJECT"})
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 f78b401

Please sign in to comment.