mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
Unnecessary 'continue' removed; other warnings fixed
This commit is contained in:
@@ -117,7 +117,6 @@ public class JavacResourcesReader {
|
||||
return ResourceBundle.getBundle(BUNDLE_NAMES[i]);
|
||||
}
|
||||
catch (MissingResourceException ignored) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
@@ -150,7 +149,7 @@ public class JavacResourcesReader {
|
||||
|
||||
private static class IgnoredWarningBundleKey extends BundleKey {
|
||||
public IgnoredWarningBundleKey(final String messageKey) {
|
||||
super(JavacResourcesReader.MSG_IGNORED, new String[]{"compiler.warn.warning", messageKey});
|
||||
super(MSG_IGNORED, new String[]{"compiler.warn.warning", messageKey});
|
||||
}
|
||||
|
||||
public String getCategoryValue(ResourceBundle messagesBundle) {
|
||||
|
||||
Reference in New Issue
Block a user