jdk/src/java.desktop/share/classes/sun/awt/image/BytePackedRaster.java
changeset 32865 f9cb6e427f9e
parent 30948 0a0972d3b58d
child 37544 d07afcfa7730
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
    71     private int maxX;
    71     private int maxX;
    72 
    72 
    73     /** A cached copy of minY + height for use in bounds checks. */
    73     /** A cached copy of minY + height for use in bounds checks. */
    74     private int maxY;
    74     private int maxY;
    75 
    75 
    76     static private native void initIDs();
    76     private static native void initIDs();
    77     static {
    77     static {
    78         /* ensure that the necessary native libraries are loaded */
    78         /* ensure that the necessary native libraries are loaded */
    79         NativeLibLoader.loadLibraries();
    79         NativeLibLoader.loadLibraries();
    80         initIDs();
    80         initIDs();
    81     }
    81     }