Author: ebourg
Date: Thu Feb 21 08:07:05 2008
New Revision: 629844
URL: http://svn.apache.org/viewvc?rev=629844&view=rev
Log:
PListNode and ArrayNode in XMLPropertyListConfiguration are now private (they
had to be public originally to be instantiated by Digester)
Modified:
commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java
Modified:
commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java?rev=629844&r1=629843&r2=629844&view=diff
==============================================================================
---
commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java
(original)
+++
commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2/plist/XMLPropertyListConfiguration.java
Thu Feb 21 08:07:05 2008
@@ -548,10 +548,8 @@
/**
* Node extension with addXXX methods to parse the typed data passed by
the SAX handler.
- * <b>Do not use this class !</b> It is used internally by
XMLPropertyConfiguration
- * to parse the configuration file, it may be removed at any moment in the
future.
*/
- public static class PListNode extends Node
+ private static class PListNode extends Node
{
/**
* The serial version UID.
@@ -688,11 +686,9 @@
}
/**
- * Container for array elements. <b>Do not use this class !</b>
- * It is used internally by XMLPropertyConfiguration to parse the
- * configuration file, it may be removed at any moment in the future.
+ * Container for array elements.
*/
- public static class ArrayNode extends PListNode
+ private static class ArrayNode extends PListNode
{
/**
* The serial version UID.