This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch maintenance-branch in repository https://gitbox.apache.org/repos/asf/causeway.git
The following commit(s) were added to refs/heads/maintenance-branch by this push: new f8cbf8a0d4 CAUSEWAY-3705: removes unnecessary/erroneous methods from Cached marker interface new 9fa7dd24e6 Merge branch 'CAUSEWAY-3705' into maintenance-branch f8cbf8a0d4 is described below commit f8cbf8a0d4e53d4478b1cf107885fb8a06398048 Author: Dan Haywood <d...@haywood-associates.co.uk> AuthorDate: Mon Jul 22 13:00:47 2024 +0100 CAUSEWAY-3705: removes unnecessary/erroneous methods from Cached marker interface --- .../extensions/titlecache/applib/event/Cached.java | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/extensions/core/titlecache/applib/src/main/java/org/apache/causeway/extensions/titlecache/applib/event/Cached.java b/extensions/core/titlecache/applib/src/main/java/org/apache/causeway/extensions/titlecache/applib/event/Cached.java index d2fb645b1f..d209b209e3 100644 --- a/extensions/core/titlecache/applib/src/main/java/org/apache/causeway/extensions/titlecache/applib/event/Cached.java +++ b/extensions/core/titlecache/applib/src/main/java/org/apache/causeway/extensions/titlecache/applib/event/Cached.java @@ -36,18 +36,4 @@ import org.apache.causeway.applib.annotation.DomainObjectLayout; * @since 2.1 {@index} */ public interface Cached { - - /** - * The number of minutes that a title should stay in the cache (of a given logical type name) - * - * @return - */ - int expiryDurationInMinutes(); - - /** - * The maximum number of entries that can reside in the cache (of a given logical type name). - * @return - */ - int maxSizeInEntries(); - }