--- a/jdk/src/java.desktop/share/classes/sun/java2d/pipe/AAShapePipe.java Fri Sep 18 11:31:15 2015 -0700
+++ b/jdk/src/java.desktop/share/classes/sun/java2d/pipe/AAShapePipe.java Sat Sep 19 15:45:59 2015 -0700
@@ -127,7 +127,7 @@
private static byte[] theTile;
- private synchronized static byte[] getAlphaTile(int len) {
+ private static synchronized byte[] getAlphaTile(int len) {
byte[] t = theTile;
if (t == null || t.length < len) {
t = new byte[len];
@@ -137,7 +137,7 @@
return t;
}
- private synchronized static void dropAlphaTile(byte[] t) {
+ private static synchronized void dropAlphaTile(byte[] t) {
theTile = t;
}