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 7594031 commit 3eb773a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/test/java/picocli/ModelPositionalParamSpecTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,6 @@ public void testPositionalParamSpecEquals() {
.index("1..3");

PositionalParamSpec p1 = positional.build();
assertEquals(p1, p1);
assertEquals(p1, positional.build());
assertNotEquals(p1, positional.arity("2").build());
assertNotEquals(p1, positional.arity("1").hideParamSyntax(false).build());
Expand Down

0 comments on commit 3eb773a

Please sign in to comment.