jkesselm 02/04/09 12:12:43
Modified: java/src/org/apache/xml/dtm/ref DTMManagerDefault.java
Log:
Yeowch. Didn't mean to check in the XNI experiment.
Disabled, probably belongs on a branch. (And probably
needs to be rewritten fairly intensively, since the current
hook is something of a kluge!)
Revision Changes Path
1.39 +5 -3
xml-xalan/java/src/org/apache/xml/dtm/ref/DTMManagerDefault.java
Index: DTMManagerDefault.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMManagerDefault.java,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- DTMManagerDefault.java 9 Apr 2002 19:05:30 -0000 1.38
+++ DTMManagerDefault.java 9 Apr 2002 19:12:43 -0000 1.39
@@ -117,7 +117,7 @@
* */
public class DTMManagerDefault extends DTMManager
{
- static final boolean JKESS_XNI_EXPERIMENT=true;
+ static final boolean JKESS_XNI_EXPERIMENT=false;
/** Set this to true if you want a dump of the DTM after creation. */
private static final boolean DUMPTREE = false;
@@ -350,12 +350,14 @@
dtm = new SAX2RTFDTM(this, source, documentID, whiteSpaceFilter,
xstringFactory, doIndexing);
}
+ /******************************************************
// EXPERIMENTAL 3/22/02
- else if(JKESS_XNI_EXPERIMENT && m_incremental)
- {
+ //else if(JKESS_XNI_EXPERIMENT && m_incremental)
+ {
dtm = new XNI2DTM(this, source, documentID, whiteSpaceFilter,
xstringFactory, doIndexing);
}
+ ********************************************************/
else // Create the basic SAX2DTM.
{
dtm = new SAX2DTM(this, source, documentID, whiteSpaceFilter,
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]