< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/TransformerImpl.java

Print this page

        

*** 15,27 **** * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ - /* - * $Id: TransformerImpl.java,v 1.10 2007/06/13 01:57:09 joehw Exp $ - */ package com.sun.org.apache.xalan.internal.xsltc.trax; import com.sun.org.apache.xalan.internal.XalanConstants; import com.sun.org.apache.xalan.internal.utils.FactoryImpl; --- 15,24 ----
*** 158,168 **** private DOM _dom = null; /** * Number of indent spaces to add when indentation is on. */ ! private int _indentNumber; /** * A reference to the transformer factory that this templates * object belongs to. */ --- 155,165 ---- private DOM _dom = null; /** * Number of indent spaces to add when indentation is on. */ ! private int _indentNumber = -1; /** * A reference to the transformer factory that this templates * object belongs to. */
*** 1460,1470 **** _sourceSystemId = null; _errorListener = this; _uriResolver = null; _dom = null; _parameters = null; ! _indentNumber = 0; setOutputProperties (null); _tohFactory = null; _ostream = null; } --- 1457,1467 ---- _sourceSystemId = null; _errorListener = this; _uriResolver = null; _dom = null; _parameters = null; ! _indentNumber = -1; setOutputProperties (null); _tohFactory = null; _ostream = null; }
< prev index next >