jdk/src/share/classes/java/util/Properties.java
changeset 6882 637546039be3
parent 6521 3b995fa42e90
child 7668 d4a77089c587
child 7803 56bc97d69d93
--- a/jdk/src/share/classes/java/util/Properties.java	Mon Oct 11 10:55:04 2010 +0100
+++ b/jdk/src/share/classes/java/util/Properties.java	Mon Oct 11 20:22:27 2010 -0700
@@ -705,7 +705,7 @@
      *             <code>Strings</code>.
      */
     @Deprecated
-    public synchronized void save(OutputStream out, String comments)  {
+    public void save(OutputStream out, String comments)  {
         try {
             store(out, comments);
         } catch (IOException e) {
@@ -890,7 +890,7 @@
      * @see    #loadFromXML(InputStream)
      * @since 1.5
      */
-    public synchronized void storeToXML(OutputStream os, String comment)
+    public void storeToXML(OutputStream os, String comment)
         throws IOException
     {
         if (os == null)
@@ -929,8 +929,7 @@
      * @see    #loadFromXML(InputStream)
      * @since 1.5
      */
-    public synchronized void storeToXML(OutputStream os, String comment,
-                                       String encoding)
+    public void storeToXML(OutputStream os, String comment, String encoding)
         throws IOException
     {
         if (os == null)