Skip to content

Commit 10aa32d

Browse files
committed
Fix formatting
1 parent 1954a9a commit 10aa32d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020-2025 DiffPlug
2+
* Copyright 2020-2026 DiffPlug
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -128,7 +128,8 @@ private Key(String identifier, String ratchetFrom) {
128128

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

0 commit comments

Comments
 (0)