Unnecessary 'continue' removed; other warnings fixed

This commit is contained in:
Tagir Valeev
2017-10-31 15:44:07 +01:00
parent ee509d0158
commit 2a2b09e1f8
8 changed files with 16 additions and 32 deletions
@@ -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) {