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