jdk/src/java.base/share/classes/sun/security/ssl/AppOutputStream.java
changeset 32649 2ee9017c7597
parent 30904 ec0224270f90
--- a/jdk/src/java.base/share/classes/sun/security/ssl/AppOutputStream.java	Wed Sep 16 08:24:40 2015 -0400
+++ b/jdk/src/java.base/share/classes/sun/security/ssl/AppOutputStream.java	Tue Sep 15 21:56:04 2015 -0700
@@ -49,7 +49,7 @@
      * Write the data out, NOW.
      */
     @Override
-    synchronized public void write(byte[] b, int off, int len)
+    public synchronized void write(byte[] b, int off, int len)
             throws IOException {
         if (b == null) {
             throw new NullPointerException();
@@ -76,7 +76,7 @@
      * Write one byte now.
      */
     @Override
-    synchronized public void write(int i) throws IOException {
+    public synchronized void write(int i) throws IOException {
         oneByte[0] = (byte)i;
         write(oneByte, 0, 1);
     }