From 31a9694fc88e0a5b9343d2cca1cf008aef26830d Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 12 Jul 2022 13:04:34 +0200 Subject: [PATCH] Improve Javadoc for ContextCache#clearStatistics() See gh-28795 --- .../org/springframework/test/context/cache/ContextCache.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spring-test/src/main/java/org/springframework/test/context/cache/ContextCache.java b/spring-test/src/main/java/org/springframework/test/context/cache/ContextCache.java index 9987935c1e..608481399c 100644 --- a/spring-test/src/main/java/org/springframework/test/context/cache/ContextCache.java +++ b/spring-test/src/main/java/org/springframework/test/context/cache/ContextCache.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2018 the original author or authors. + * Copyright 2002-2022 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -155,7 +155,8 @@ public interface ContextCache { void clear(); /** - * Clear hit-and-miss count statistics for the cache (i.e., reset counters to zero). + * Clear {@linkplain #getHitCount() hit count} and {@linkplain #getMissCount() + * miss count} statistics for the cache (i.e., reset counters to zero). */ void clearStatistics();