Change @since from 3.7.0 to 4.0.0

This commit is contained in:
Michael Osipov 2021-06-27 00:04:50 +02:00
parent 73e00ed85d
commit cbaf7f7b48
1 changed files with 2 additions and 2 deletions

View File

@ -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 )
{