8183576: Synchronization in BufferedImage.setRGB(int x, int y, int rgb) is not necessary
authorserb
Mon, 10 Jul 2017 14:41:54 -0700
changeset 47152 9a0442e2131c
parent 47151 362dcbee0613
child 47153 9292a24eb113
8183576: Synchronization in BufferedImage.setRGB(int x, int y, int rgb) is not necessary Reviewed-by: prr, flar, pnarayanan
jdk/src/java.desktop/share/classes/java/awt/image/BufferedImage.java
--- 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));
     }