[Practicalxml-commits] SF.net SVN: practicalxml:[67] trunk/src/main/java/net/sf/practicalxml/ Schem
Brought to you by:
kdgregory
|
From: Auto-Generated S. C. M. <pra...@li...> - 2008-12-29 02:57:47
|
Revision: 67
http://practicalxml.svn.sourceforge.net/practicalxml/?rev=67&view=rev
Author: kdgregory
Date: 2008-12-29 02:57:43 +0000 (Mon, 29 Dec 2008)
Log Message:
-----------
SchemaUtil: change access level of internal nested classes
Modified Paths:
--------------
trunk/src/main/java/net/sf/practicalxml/SchemaUtil.java
Modified: trunk/src/main/java/net/sf/practicalxml/SchemaUtil.java
===================================================================
--- trunk/src/main/java/net/sf/practicalxml/SchemaUtil.java 2008-12-29 02:52:04 UTC (rev 66)
+++ trunk/src/main/java/net/sf/practicalxml/SchemaUtil.java 2008-12-29 02:57:43 UTC (rev 67)
@@ -230,10 +230,9 @@
* are different under 1.6, it will be moved into its own package and
* accessed via a factory.
* <p>
- * Defined as protected -- as are internal methods -- so that it can be
- * tested independently.
+ * Defined as package protected so that it can be tested independently.
*/
- protected static class SchemaManager
+ static class SchemaManager
{
private HashMap<String,Document> _documents = new HashMap<String,Document>();
@@ -319,9 +318,9 @@
* namespace URLs, and schemas with no target namespace are greater-than
* those with (since they cannot be imported).
* <p>
- * Defined as protected so that it can be tested independently.
+ * Defined as package-protected so that it can be tested independently.
*/
- protected static class SchemaComparator
+ static class SchemaComparator
implements Comparator<Document>
{
public int compare(Document o1, Document o2)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|