You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by GitBox <gi...@apache.org> on 2022/10/10 12:58:32 UTC

[GitHub] [groovy] marcwrobel commented on a diff in pull request #1792: Fix small typos in documentations

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


##########
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:
   Won't fix: the behavior must not be changed.



##########
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:
   Won't fix: the behavior must not be changed.



-- 
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: notifications-unsubscribe@groovy.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org