jdk/src/java.base/share/classes/java/util/zip/Inflater.java
changeset 32649 2ee9017c7597
parent 32037 ab4526f4ac10
child 44534 a076dffbc2c1
--- a/jdk/src/java.base/share/classes/java/util/zip/Inflater.java	Wed Sep 16 08:24:40 2015 -0400
+++ b/jdk/src/java.base/share/classes/java/util/zip/Inflater.java	Tue Sep 15 21:56:04 2015 -0700
@@ -395,13 +395,13 @@
         }
     }
 
-    private native static void initIDs();
-    private native static long init(boolean nowrap);
-    private native static void setDictionary(long addr, byte[] b, int off,
+    private static native void initIDs();
+    private static native long init(boolean nowrap);
+    private static native void setDictionary(long addr, byte[] b, int off,
                                              int len);
     private native int inflateBytes(long addr, byte[] b, int off, int len)
             throws DataFormatException;
-    private native static int getAdler(long addr);
-    private native static void reset(long addr);
-    private native static void end(long addr);
+    private static native int getAdler(long addr);
+    private static native void reset(long addr);
+    private static native void end(long addr);
 }