You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by fm...@apache.org on 2015/08/19 12:07:26 UTC

syncope git commit: [SYNCOPE-156] fix for checkstyle

Repository: syncope
Updated Branches:
  refs/heads/master e0d493db3 -> 0e5694a3a


[SYNCOPE-156] fix for checkstyle


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/0e5694a3
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/0e5694a3
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/0e5694a3

Branch: refs/heads/master
Commit: 0e5694a3a46617603c30e5479571e3def5afa798
Parents: e0d493d
Author: fmartelli <fa...@gmail.com>
Authored: Wed Aug 19 12:07:05 2015 +0200
Committer: fmartelli <fa...@gmail.com>
Committed: Wed Aug 19 12:07:05 2015 +0200

----------------------------------------------------------------------
 .../client/console/wicket/markup/html/form/ActionLinksPanel.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/0e5694a3/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/ActionLinksPanel.java
----------------------------------------------------------------------
diff --git a/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/ActionLinksPanel.java b/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/ActionLinksPanel.java
index 22ff2e2..3986090 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/ActionLinksPanel.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/ActionLinksPanel.java
@@ -840,7 +840,7 @@ public final class ActionLinksPanel<T extends Serializable> extends Panel {
         }
     }
 
-    private ActionLinksPanel<T> setDisableIndicator(boolean disableIndicator) {
+    private ActionLinksPanel<T> setDisableIndicator(final boolean disableIndicator) {
         this.disableIndicator = disableIndicator;
         return this;
     }
@@ -868,7 +868,7 @@ public final class ActionLinksPanel<T extends Serializable> extends Panel {
             this.pageRef = pageRef;
         }
 
-        public Builder<T> setDisableIndicator(boolean disableIndicator) {
+        public Builder<T> setDisableIndicator(final boolean disableIndicator) {
             this.disableIndicator = disableIndicator;
             return this;
         }