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/10/23 12:29:30 UTC

[29/54] [abbrv] syncope git commit: checkstyle plugin told me to delete a private modifier

checkstyle plugin told me to delete a private modifier


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

Branch: refs/heads/SYNCOPE-156
Commit: 5ebdcf7f5109d8a778b843424bbb4c0adda7fe66
Parents: 85d4e83
Author: massi <ma...@tirasa.net>
Authored: Tue Oct 20 15:03:05 2015 +0200
Committer: massi <ma...@tirasa.net>
Committed: Tue Oct 20 15:03:05 2015 +0200

----------------------------------------------------------------------
 .../apache/syncope/client/cli/commands/logger/LoggerCommand.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/5ebdcf7f/client/cli/src/main/java/org/apache/syncope/client/cli/commands/logger/LoggerCommand.java
----------------------------------------------------------------------
diff --git a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/logger/LoggerCommand.java b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/logger/LoggerCommand.java
index 399723b..34acc25 100644
--- a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/logger/LoggerCommand.java
+++ b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/logger/LoggerCommand.java
@@ -94,7 +94,7 @@ public class LoggerCommand extends AbstractCommand {
 
         private final String optionName;
 
-        private static LoggerOptions(final String optionName) {
+        LoggerOptions(final String optionName) {
             this.optionName = optionName;
         }