Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8344252: SM cleanup in java.util classes #22122

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/java.base/share/classes/java/util/Properties.java
Original file line number Diff line number Diff line change
@@ -949,7 +949,6 @@ private void store0(BufferedWriter bw, String comments, boolean escUnicode)
}

private static void writeDateComment(BufferedWriter bw) throws IOException {
// value of java.properties.date system property isn't sensitive
String sysPropVal = StaticProperty.javaPropertiesDate();
if (sysPropVal != null && !sysPropVal.isEmpty()) {
writeComments(bw, sysPropVal);
2 changes: 1 addition & 1 deletion src/java.base/share/classes/java/util/ResourceBundle.java
Original file line number Diff line number Diff line change
@@ -1886,7 +1886,7 @@ private static ServiceLoader<ResourceBundleProvider> getServiceLoader(Module mod
Class<ResourceBundleProvider> s = (Class<ResourceBundleProvider>) c;
return s;
}
} catch (ClassNotFoundException e) {}
} catch (ClassNotFoundException _) {}
return null;
}

Original file line number Diff line number Diff line change
@@ -78,7 +78,7 @@
* <p>
* Refer to {@link ResourceBundleProvider} for details.
*
* @see <a href="../ResourceBundle.html#resource-bundle-modules">
* @see <a href="ResourceBundle##resource-bundle-modules">
* Resource Bundles and Named Modules</a>
* @since 9
*/