Skip to content

Commit cd4f0c3

Browse files
authored
Fix: Making Flushable public (dotCMS#33028)
It fixed dotCMS#32784 ### Proposed Changes Weld is trying to generate a proxy for HostWebAPIImpl that also implements Flushable. However, since Flushable is not public, if the proxy is created in a different package, it won’t be visible to the runtime-generated proxy class.
1 parent 2f9487e commit cd4f0c3

File tree

1 file changed

+1
-1
lines changed
  • dotCMS/src/main/java/com/dotmarketing/portlets/contentlet/business

1 file changed

+1
-1
lines changed

dotCMS/src/main/java/com/dotmarketing/portlets/contentlet/business/Flushable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* A Flushable is a API that handle cache and provided public mehod to flush the content away
55
* @param <T>
66
*/
7-
interface Flushable<T> {
7+
public interface Flushable<T> {
88

99
/**
1010
* Flush all the cache away

0 commit comments

Comments
 (0)