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 <[email protected]> Authored: Wed Aug 19 12:07:05 2015 +0200 Committer: fmartelli <[email protected]> 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; }
