8183576: Synchronization in BufferedImage.setRGB(int x, int y, int rgb) is not necessary
Reviewed-by: prr, flar, pnarayanan
--- a/jdk/src/java.desktop/share/classes/java/awt/image/BufferedImage.java Mon Jul 10 14:55:29 2017 +0530
+++ b/jdk/src/java.desktop/share/classes/java/awt/image/BufferedImage.java Mon Jul 10 14:41:54 2017 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -1012,7 +1012,7 @@
* @see #getRGB(int, int)
* @see #getRGB(int, int, int, int, int[], int, int)
*/
- public synchronized void setRGB(int x, int y, int rgb) {
+ public void setRGB(int x, int y, int rgb) {
raster.setDataElements(x, y, colorModel.getDataElements(rgb, null));
}