You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by ta...@apache.org on 2008/06/04 21:13:26 UTC

svn commit: r663348 - /portals/jetspeed-2/portal/trunk/components/jetspeed-prefs/src/main/java/org/apache/jetspeed/prefs/impl/PreferencesImpl.java

Author: taylor
Date: Wed Jun  4 12:13:25 2008
New Revision: 663348

URL: http://svn.apache.org/viewvc?rev=663348&view=rev
Log:
https://issues.apache.org/jira/browse/JS2-886

Modified:
    portals/jetspeed-2/portal/trunk/components/jetspeed-prefs/src/main/java/org/apache/jetspeed/prefs/impl/PreferencesImpl.java

Modified: portals/jetspeed-2/portal/trunk/components/jetspeed-prefs/src/main/java/org/apache/jetspeed/prefs/impl/PreferencesImpl.java
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/trunk/components/jetspeed-prefs/src/main/java/org/apache/jetspeed/prefs/impl/PreferencesImpl.java?rev=663348&r1=663347&r2=663348&view=diff
==============================================================================
--- portals/jetspeed-2/portal/trunk/components/jetspeed-prefs/src/main/java/org/apache/jetspeed/prefs/impl/PreferencesImpl.java (original)
+++ portals/jetspeed-2/portal/trunk/components/jetspeed-prefs/src/main/java/org/apache/jetspeed/prefs/impl/PreferencesImpl.java Wed Jun  4 12:13:25 2008
@@ -83,7 +83,7 @@
         super(parent, nodeName);
         try
         {
-            node = prefsProvider.getNode(this.absolutePath(), nodeType);
+            node = ppw.provider().getNode(this.absolutePath(), nodeType);
             newNode = false;
         }
         catch (NodeDoesNotExistException e1)
@@ -92,11 +92,11 @@
             {
                 if (parent != null)
                 {
-                    this.node = prefsProvider.createNode(parent.getNode(), nodeName, nodeType, this.absolutePath());
+                    this.node = ppw.provider().createNode(parent.getNode(), nodeName, nodeType, this.absolutePath());
                 }
                 else
                 {
-                    this.node = prefsProvider.createNode(null, nodeName, nodeType, this.absolutePath());
+                    this.node = ppw.provider().createNode(null, nodeName, nodeType, this.absolutePath());
                 }
 
                 newNode = true;
@@ -112,7 +112,7 @@
             {
                 try
                 {
-                    node = prefsProvider.getNode(this.absolutePath(), nodeType);
+                    node = ppw.provider().getNode(this.absolutePath(), nodeType);
                     newNode = false;
                 }
                 catch (NodeDoesNotExistException e2)



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-dev-help@portals.apache.org