Skip to content

Commit 3d3af0e

Browse files
committed
Add issue links for LRU cache
1 parent 314b3b2 commit 3d3af0e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/org/scijava/util/ClassUtils.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ private ClassUtils() {
6767
* This map serves as a cache, as these annotations should not change at
6868
* runtime and thus can alleviate the frequency field querying.
6969
* </p>
70+
* @see <a href="https://github.com/scijava/scijava-common/issues/142">issue #142</a>
7071
*/
7172
private static final Map<Class<?>, Map<Class<?>, List<Field>>> fields =
7273
new HashMap<Class<?>, Map<Class<?>, List<Field>>>();
@@ -79,6 +80,7 @@ private ClassUtils() {
7980
* This map serves as a cache, as these annotations should not change at
8081
* runtime and thus can alleviate the frequency of method querying.
8182
* </p>
83+
* @see <a href="https://github.com/scijava/scijava-common/issues/142">issue #142</a>
8284
*/
8385
private static final Map<Class<?>, Map<Class<?>, List<Method>>> methods =
8486
new HashMap<Class<?>, Map<Class<?>, List<Method>>>();

0 commit comments

Comments
 (0)