Browse Source

[cleanup] erefactor/EclipseJdt - Add missing Annotations - Implementations of interface methods (1.6 or higher)

EclipseJdt cleanup 'AddMissingOverrideAnnotation' applied by erefactor.

For EclipseJdt see https://www.eclipse.org/eclipse/news/4.18/jdt.php
For erefactor see https://github.com/cal101/erefactor
cal101 4 years ago
parent
commit
ff533c96d8

+ 1 - 0
hutool-cache/src/main/java/cn/hutool/cache/impl/AbstractCache.java

@@ -307,6 +307,7 @@ public abstract class AbstractCache<K, V> implements Cache<K, V> {
 	 * @return this
 	 * @since 5.5.2
 	 */
+	@Override
 	public AbstractCache<K, V> setListener(CacheListener<K, V> listener) {
 		this.listener = listener;
 		return this;