Skip to content

Commit

Permalink
BUILD: fix errorprone TruthSelfEquals warn
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Apr 10, 2024
1 parent 2242366 commit 7594031
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/test/java/picocli/ArgGroupTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,6 @@ public void testGroupSpecEquals() {
ArgGroupSpec.Builder builder = ArgGroupSpec.builder();
builder.addArg(OPTION);
ArgGroupSpec a = builder.build();
assertEquals(a, a);
assertNotSame(a, ArgGroupSpec.builder().addArg(OPTION).build());
assertEquals(a, ArgGroupSpec.builder().addArg(OPTION).build());

Expand Down

0 comments on commit 7594031

Please sign in to comment.