Skip to content

Commit

Permalink
add new methods added in AEMaaCS 2024.8.17465.20240813T175259Z-240700
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Aug 15, 2024
1 parent f0228ea commit 0437013
Showing 1 changed file with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,19 @@ public List<Template> getTemplates(String policyAbsolutePath, Predicate filter)

// AEM Cloud
@SuppressWarnings("unused")
public boolean isPolicyUsed(String arg0, @Nullable Predicate arg1) {
public boolean isPolicyUsed(String arg0, @Nullable Predicate filter) {
throw new UnsupportedOperationException();
}

// AEM Cloud
@SuppressWarnings("unused")
public List<Template> getTemplates(String policyAbsolutePath, @Nullable java.util.function.Predicate filter) {
throw new UnsupportedOperationException();
}

// AEM Cloud
@SuppressWarnings("unused")
public boolean isPolicyUsed(String policyAbsolutePath, @Nullable java.util.function.Predicate filter) {
throw new UnsupportedOperationException();
}

Expand Down

0 comments on commit 0437013

Please sign in to comment.