You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2014/07/31 22:09:56 UTC

svn commit: r1614990 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java

Author: oheger
Date: Thu Jul 31 20:09:56 2014
New Revision: 1614990

URL: http://svn.apache.org/r1614990
Log:
Removed calls to getRootNode() from XMLPropertyListConfiguration.

Modified:
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java?rev=1614990&r1=1614989&r2=1614990&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/plist/XMLPropertyListConfiguration.java Thu Jul 31 20:09:56 2014
@@ -270,7 +270,7 @@ public class XMLPropertyListConfiguratio
         writer.println("<!DOCTYPE plist SYSTEM \"file://localhost/System/Library/DTDs/PropertyList.dtd\">");
         writer.println("<plist version=\"1.0\">");
 
-        printNode(writer, 1, getRootNode());
+        printNode(writer, 1, getNodeModel().getNodeHandler().getRootNode());
 
         writer.println("</plist>");
         writer.flush();