jdk/src/share/classes/sun/java2d/pipe/AAShapePipe.java
changeset 17140 d7bd09ae1752
parent 11080 7e18e343964e
child 23010 6dadb192ad81
--- a/jdk/src/share/classes/sun/java2d/pipe/AAShapePipe.java	Thu Apr 25 10:14:24 2013 -0700
+++ b/jdk/src/share/classes/sun/java2d/pipe/AAShapePipe.java	Mon Apr 29 10:02:21 2013 -0700
@@ -127,7 +127,7 @@
 
     private static byte[] theTile;
 
-    public synchronized static byte[] getAlphaTile(int len) {
+    private synchronized static byte[] getAlphaTile(int len) {
         byte[] t = theTile;
         if (t == null || t.length < len) {
             t = new byte[len];
@@ -137,7 +137,7 @@
         return t;
     }
 
-    public synchronized static void dropAlphaTile(byte[] t) {
+    private synchronized static void dropAlphaTile(byte[] t) {
         theTile = t;
     }