Skip to content

Commit 46f913c

Browse files
committed
rewriteRun
1 parent 796f9a7 commit 46f913c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

plugin-maven/src/main/java/com/diffplug/spotless/maven/GitRatchetMaven.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,9 @@ private Key(String identifier, String ratchetFrom) {
128128

129129
@Override
130130
public boolean equals(Object o) {
131-
if (o == null || getClass() != o.getClass())
131+
if (o == null || getClass() != o.getClass()) {
132132
return false;
133+
}
133134
Key key = (Key) o;
134135
return Objects.equals(identifier, key.identifier) && Objects.equals(ratchetFrom, key.ratchetFrom);
135136
}

0 commit comments

Comments
 (0)