diff --git a/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java b/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java index b44e8a40f1..25fb268ae6 100644 --- a/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java +++ b/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java @@ -88,7 +88,7 @@ public interface ModelCache * @param path The path of the cache record, must not be {@code null}. * @param tag The tag of the cache record, must not be {@code null}. * @param data The data to store in the cache, must not be {@code null}. - * @since 3.7.0 + * @since 4.0.0 */ default void put( Source path, ModelCacheTag tag, T data ) { @@ -101,7 +101,7 @@ public interface ModelCache * @param path The path of the cache record, must not be {@code null}. * @param tag The tag of the cache record, must not be {@code null}. * @return The requested data or {@code null} if none was present in the cache. - * @since 3.7.0 + * @since 4.0.0 */ default T get( Source path, ModelCacheTag tag ) {