You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2022/03/09 06:10:05 UTC

[sling-org-apache-sling-app-cms] branch master updated: SLING-11102 - correcting invalid javabean method name

This is an automated email from the ASF dual-hosted git repository.

dklco pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git


The following commit(s) were added to refs/heads/master by this push:
     new 4630ef9  SLING-11102 - correcting invalid javabean method name
4630ef9 is described below

commit 4630ef9a293d54dbd8b91356fe9b975e401292ff
Author: Dan Klco <kl...@adobe.com>
AuthorDate: Wed Mar 9 01:09:57 2022 -0500

    SLING-11102 - correcting invalid javabean method name
---
 core/src/main/java/org/apache/sling/cms/core/models/QueryDebugger.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/sling/cms/core/models/QueryDebugger.java b/core/src/main/java/org/apache/sling/cms/core/models/QueryDebugger.java
index e367b5f..0a690a2 100644
--- a/core/src/main/java/org/apache/sling/cms/core/models/QueryDebugger.java
+++ b/core/src/main/java/org/apache/sling/cms/core/models/QueryDebugger.java
@@ -164,7 +164,7 @@ public class QueryDebugger {
     /**
      * @return if execution enabled
      */
-    public boolean getExecutionEnabled() {
+    public boolean isExecutionEnabled() {
         return enabled;
     }