You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by ma...@apache.org on 2015/10/20 15:03:31 UTC

[1/2] syncope git commit: checkstyle plugin told me to delete a private modifier

Repository: syncope
Updated Branches:
  refs/heads/master 758a3c4a8 -> 5ebdcf7f5


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/85d4e836
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/85d4e836
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/85d4e836

Branch: refs/heads/master
Commit: 85d4e836cecd4c828c3b965afb5af32c933a90fb
Parents: 758a3c4
Author: massi <ma...@tirasa.net>
Authored: Tue Oct 20 15:02:23 2015 +0200
Committer: massi <ma...@tirasa.net>
Committed: Tue Oct 20 15:02:23 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/85d4e836/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 1199218..399723b 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 LoggerOptions(final String optionName) {
+        private static LoggerOptions(final String optionName) {
             this.optionName = optionName;
         }
 


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

Posted by ma...@apache.org.
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/master
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;
         }