You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2018/02/15 01:28:50 UTC

groovy git commit: remove javadoc warnings

Repository: groovy
Updated Branches:
  refs/heads/master e7aeae058 -> 122dc3057


remove javadoc warnings


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/122dc305
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/122dc305
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/122dc305

Branch: refs/heads/master
Commit: 122dc3057c15ec68f52b0fab94a15571a93339f6
Parents: e7aeae0
Author: paulk <pa...@asert.com.au>
Authored: Thu Feb 15 11:10:21 2018 +1000
Committer: paulk <pa...@asert.com.au>
Committed: Thu Feb 15 11:10:21 2018 +1000

----------------------------------------------------------------------
 src/main/java/org/codehaus/groovy/runtime/memoize/LRUCache.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/122dc305/src/main/java/org/codehaus/groovy/runtime/memoize/LRUCache.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/codehaus/groovy/runtime/memoize/LRUCache.java b/src/main/java/org/codehaus/groovy/runtime/memoize/LRUCache.java
index 3600df2..7565519 100644
--- a/src/main/java/org/codehaus/groovy/runtime/memoize/LRUCache.java
+++ b/src/main/java/org/codehaus/groovy/runtime/memoize/LRUCache.java
@@ -53,13 +53,12 @@ public final class LRUCache<K, V> implements MemoizeCache<K, V> {
 
     /**
      * Try to get the value from cache.
-     * If not found, create the value by {@link ValueProvider} and put it into the cache, at last return the value.
+     * If not found, create the value by {@link MemoizeCache.ValueProvider} and put it into the cache, at last return the value.
      *
      * The operation is completed atomically.
      *
      * @param key
      * @param valueProvider provide the value if the associated value not found
-     * @return
      */
     @Override
     public V getAndPut(K key, ValueProvider<? super K, ? extends V> valueProvider) {