vgritsenko 2003/12/22 06:06:26
Modified: java/src/org/apache/xindice/client/xmldb
ResourceSetImpl.java
Log:
organize imports
Revision Changes Path
1.11 +11 -9
xml-xindice/java/src/org/apache/xindice/client/xmldb/ResourceSetImpl.java
Index: ResourceSetImpl.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/src/org/apache/xindice/client/xmldb/ResourceSetImpl.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ResourceSetImpl.java 7 Aug 2003 20:13:20 -0000 1.10
+++ ResourceSetImpl.java 22 Dec 2003 14:06:26 -0000 1.11
@@ -66,7 +66,10 @@
import org.apache.xindice.xml.dom.DOMCompressor;
import org.apache.xindice.xml.dom.DocumentImpl;
-import org.w3c.dom.*;
+import org.w3c.dom.Document;
+import org.w3c.dom.Element;
+import org.w3c.dom.Node;
+import org.w3c.dom.NodeList;
import org.xmldb.api.base.ErrorCodes;
import org.xmldb.api.base.Resource;
import org.xmldb.api.base.ResourceIterator;
@@ -86,13 +89,12 @@
*/
public class ResourceSetImpl implements ResourceSet {
- public static final String RESOURCE_SET_NS =
- "http://www.xmldb.org/xapi/ResourceSet";
+ public static final String RESOURCE_SET_NS =
"http://www.xmldb.org/xapi/ResourceSet";
- protected List resources = null;
- protected org.xmldb.api.base.Collection collection = null;
- private SymbolTable symbols = null;
- private byte[] bytes = null;
+ protected List resources;
+ protected org.xmldb.api.base.Collection collection;
+ private SymbolTable symbols;
+ private byte[] bytes;
public ResourceSetImpl(org.xmldb.api.base.Collection collection,