You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2020/07/09 16:39:10 UTC

[groovy] branch GROOVY-9631 updated: cleanup code

This is an automated email from the ASF dual-hosted git repository.

sunlan pushed a commit to branch GROOVY-9631
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/GROOVY-9631 by this push:
     new 9930c31  cleanup code
9930c31 is described below

commit 9930c31e38b6601124b15c7d00723ea76ca23ba3
Author: Daniel Sun <su...@apache.org>
AuthorDate: Fri Jul 10 00:38:24 2020 +0800

    cleanup code
---
 .../org/codehaus/groovy/util/AbstractConcurrentMapBase.java    | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/src/main/java/org/codehaus/groovy/util/AbstractConcurrentMapBase.java b/src/main/java/org/codehaus/groovy/util/AbstractConcurrentMapBase.java
index 0ffe096..cf31aa3 100644
--- a/src/main/java/org/codehaus/groovy/util/AbstractConcurrentMapBase.java
+++ b/src/main/java/org/codehaus/groovy/util/AbstractConcurrentMapBase.java
@@ -89,16 +89,6 @@ public abstract class AbstractConcurrentMapBase<K, V> {
         return ref;
     }
 
-    public interface Entry<V> {
-        V getValue();
-
-        void setValue(V var1);
-
-        int getHash();
-
-        boolean isValid();
-    }
-
     private static class Key<K> {
         K key;