sandygao 2002/08/08 13:45:36
Modified: java/src/org/apache/xerces/dom DeferredDocumentImpl.java
Log:
Removed the parameter that's not used anymore.
Revision Changes Path
1.48 +3 -3
xml-xerces/java/src/org/apache/xerces/dom/DeferredDocumentImpl.java
Index: DeferredDocumentImpl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/dom/DeferredDocumentImpl.java,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- DeferredDocumentImpl.java 6 Aug 2002 19:21:34 -0000 1.47
+++ DeferredDocumentImpl.java 8 Aug 2002 20:45:36 -0000 1.48
@@ -1702,7 +1702,7 @@
// utility methods
/** Ensures that the internal tables are large enough. */
- protected void ensureCapacity(int chunk, int index) {
+ protected void ensureCapacity(int chunk) {
if (fNodeType == null) {
// create buffers
fNodeType = new int[INITIAL_CHUNK_COUNT][];
@@ -1776,7 +1776,7 @@
// ensure tables are large enough
int chunk = fNodeCount >> CHUNK_SHIFT;
int index = fNodeCount & CHUNK_MASK;
- ensureCapacity(chunk, index);
+ ensureCapacity(chunk);
// initialize node
setChunkIndex(fNodeType, nodeType, chunk, index);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]