You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2021/06/26 22:04:58 UTC

[maven] branch master updated: Change @since from 3.7.0 to 4.0.0

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/master by this push:
     new cbaf7f7  Change @since from 3.7.0 to 4.0.0
cbaf7f7 is described below

commit cbaf7f7b48c35867142e83f3573e51724ebe6ae5
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Jun 27 00:04:50 2021 +0200

    Change @since from 3.7.0 to 4.0.0
---
 .../src/main/java/org/apache/maven/model/building/ModelCache.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 b44e8a4..25fb268 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 <T> void put( Source path, ModelCacheTag<T> 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> T get( Source path, ModelCacheTag<T> tag )
     {