Skip to content

Commit d01a46b

Browse files
authored
fix: remove final on private method (#3017)
1 parent ca55fc1 commit d01a46b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/PrimaryUpdateAndCacheUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ public static int compareResourceVersions(String v1, String v2) {
467467
return 0;
468468
}
469469

470-
private static final int validateResourceVersion(String v1) {
470+
private static int validateResourceVersion(String v1) {
471471
int v1Length = v1.length();
472472
if (v1Length == 0) {
473473
throw new NonComparableResourceVersionException("Resource version is empty");

0 commit comments

Comments
 (0)