Remove useless empty inheritDoc Javadoc tag

This commit is contained in:
Stéphane Nicoll
2023-12-22 11:23:11 +01:00
parent 12f6330fae
commit cd8bc2f82a
6 changed files with 2 additions and 62 deletions

View File

@@ -114,18 +114,12 @@ public class DefaultContextCache implements ContextCache {
}
/**
* {@inheritDoc}
*/
@Override
public boolean contains(MergedContextConfiguration key) {
Assert.notNull(key, "Key must not be null");
return this.contextMap.containsKey(key);
}
/**
* {@inheritDoc}
*/
@Override
@Nullable
public ApplicationContext get(MergedContextConfiguration key) {
@@ -140,9 +134,6 @@ public class DefaultContextCache implements ContextCache {
return context;
}
/**
* {@inheritDoc}
*/
@Override
public void put(MergedContextConfiguration key, ApplicationContext context) {
Assert.notNull(key, "Key must not be null");
@@ -159,9 +150,6 @@ public class DefaultContextCache implements ContextCache {
}
}
/**
* {@inheritDoc}
*/
@Override
public void remove(MergedContextConfiguration key, @Nullable HierarchyMode hierarchyMode) {
Assert.notNull(key, "Key must not be null");
@@ -218,26 +206,17 @@ public class DefaultContextCache implements ContextCache {
removedContexts.add(key);
}
/**
* {@inheritDoc}
*/
@Override
public int getFailureCount(MergedContextConfiguration key) {
return this.failureCounts.getOrDefault(key, 0);
}
/**
* {@inheritDoc}
*/
@Override
public void incrementFailureCount(MergedContextConfiguration key) {
this.totalFailureCount.incrementAndGet();
this.failureCounts.merge(key, 1, Integer::sum);
}
/**
* {@inheritDoc}
*/
@Override
public int size() {
return this.contextMap.size();
@@ -250,33 +229,21 @@ public class DefaultContextCache implements ContextCache {
return this.maxSize;
}
/**
* {@inheritDoc}
*/
@Override
public int getParentContextCount() {
return this.hierarchyMap.size();
}
/**
* {@inheritDoc}
*/
@Override
public int getHitCount() {
return this.hitCount.get();
}
/**
* {@inheritDoc}
*/
@Override
public int getMissCount() {
return this.missCount.get();
}
/**
* {@inheritDoc}
*/
@Override
public void reset() {
synchronized (this.contextMap) {
@@ -287,9 +254,6 @@ public class DefaultContextCache implements ContextCache {
}
}
/**
* {@inheritDoc}
*/
@Override
public void clear() {
synchronized (this.contextMap) {
@@ -298,9 +262,6 @@ public class DefaultContextCache implements ContextCache {
}
}
/**
* {@inheritDoc}
*/
@Override
public void clearStatistics() {
synchronized (this.contextMap) {
@@ -309,9 +270,6 @@ public class DefaultContextCache implements ContextCache {
}
}
/**
* {@inheritDoc}
*/
@Override
public void logStatistics() {
if (statsLogger.isDebugEnabled()) {

View File

@@ -204,9 +204,6 @@ public abstract class AbstractTestContextBootstrapper implements TestContextBoot
return TestContextSpringFactoriesUtils.loadFactoryImplementations(TestExecutionListener.class);
}
/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
@Override
public final MergedContextConfiguration buildMergedContextConfiguration() {

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-2023 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.
@@ -48,17 +48,11 @@ public class DefaultBootstrapContext implements BootstrapContext {
this.cacheAwareContextLoaderDelegate = cacheAwareContextLoaderDelegate;
}
/**
* {@inheritDoc}
*/
@Override
public Class<?> getTestClass() {
return this.testClass;
}
/**
* {@inheritDoc}
*/
@Override
public CacheAwareContextLoaderDelegate getCacheAwareContextLoaderDelegate() {
return this.cacheAwareContextLoaderDelegate;