Skip to content

Commit 0d14e30

Browse files
committed
Fix findbugs error
Signed-off-by: Zhao Xiaojie <[email protected]>
1 parent 1a4ea0d commit 0d14e30

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/jenkins/plugins/localization/ResourceBundleFactoryImpl.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,16 @@ public String getFormatStringWithoutDefaulting(Locale locale, String key) {
118118
}
119119
return text;
120120
}
121+
122+
@Override
123+
public boolean equals(Object o) {
124+
return super.equals(o);
125+
}
126+
127+
@Override
128+
public int hashCode() {
129+
return super.hashCode();
130+
}
121131
};
122132
}
123133

0 commit comments

Comments
 (0)