You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by an...@apache.org on 2017/08/03 15:12:04 UTC

syncope git commit: added missing protected access in PlainAttrs

Repository: syncope
Updated Branches:
  refs/heads/2_0_X 54bc012b1 -> 48707e6b2


added missing protected access in PlainAttrs


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

Branch: refs/heads/2_0_X
Commit: 48707e6b2653909dfc66c0f80cfd091148a144ed
Parents: 54bc012
Author: Andrea Patricelli <an...@apache.org>
Authored: Thu Aug 3 17:08:07 2017 +0200
Committer: Andrea Patricelli <an...@apache.org>
Committed: Thu Aug 3 17:08:07 2017 +0200

----------------------------------------------------------------------
 .../apache/syncope/client/console/wizards/any/PlainAttrs.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/48707e6b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
----------------------------------------------------------------------
diff --git a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
index 1594ca0..250930a 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
@@ -67,9 +67,9 @@ public class PlainAttrs extends AbstractAttrs<PlainSchemaTO> {
 
     private static final long serialVersionUID = 552437609667518888L;
 
-    private final AjaxWizard.Mode mode;
+    protected final AjaxWizard.Mode mode;
 
-    private final AnyTO previousObject;
+    protected final AnyTO previousObject;
 
     public <T extends AnyTO> PlainAttrs(
             final AnyWrapper<T> modelObject,