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 <[email protected]>
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 )
{