vgritsenko 2003/12/24 19:46:39
Modified: java/src/org/apache/xindice/xml XMLCompressedInput.java
Log:
Comment out unused variable
Revision Changes Path
1.10 +4 -5
xml-xindice/java/src/org/apache/xindice/xml/XMLCompressedInput.java
Index: XMLCompressedInput.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/src/org/apache/xindice/xml/XMLCompressedInput.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- XMLCompressedInput.java 10 Aug 2003 16:28:47 -0000 1.9
+++ XMLCompressedInput.java 25 Dec 2003 03:46:39 -0000 1.10
@@ -78,12 +78,11 @@
private static final Log log =
LogFactory.getLog(XMLCompressedInput.class);
private byte signature = 0;
- // TODO this variable is never accessed
- private SymbolTable st = null;
+ // Not used: private SymbolTable st = null;
public XMLCompressedInput(InputStream is, SymbolTable st) {
super(is);
- this.st = st;
+ // this.st = st;
}
/**