< prev index next >

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

Print this page

        

@@ -15,13 +15,10 @@
  * 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;

@@ -158,11 +155,11 @@
     private DOM _dom = null;
 
     /**
      * Number of indent spaces to add when indentation is on.
      */
-    private int _indentNumber;
+    private int _indentNumber = -1;
 
     /**
      * A reference to the transformer factory that this templates
      * object belongs to.
      */

@@ -1460,11 +1457,11 @@
         _sourceSystemId = null;
         _errorListener = this;
         _uriResolver = null;
         _dom = null;
         _parameters = null;
-        _indentNumber = 0;
+        _indentNumber = -1;
         setOutputProperties (null);
         _tohFactory = null;
         _ostream = null;
 
     }
< prev index next >