marcwrobel commented on code in PR #1803:
URL: https://github.com/apache/groovy/pull/1803#discussion_r998180923


##########
src/main/java/org/codehaus/groovy/runtime/metaclass/ConcurrentReaderHashMap.java:
##########
@@ -693,7 +693,7 @@ protected Object sremove(Object key, int hash) {
         e.value = null;
         count--;
         Entry head = e.next;
-        for (Entry p = first; p != e; p = p.next) 
+        for (Entry p = first; p != e; p = p.next)

Review Comment:
   Change reverted.



##########
src/main/java/org/codehaus/groovy/runtime/metaclass/ConcurrentReaderHashMap.java:
##########
@@ -663,7 +663,7 @@ public Object remove(Object key) {
             count--;
 
             Entry head = e.next;
-            for (Entry p = first; p != e; p = p.next) 
+            for (Entry p = first; p != e; p = p.next)

Review Comment:
   Change reverted.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to