src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/ToStream.java
changeset 48944 25aa8b9f1dae
parent 48409 5ab69533994b
child 48947 b4dd09b5d6d8
equal deleted inserted replaced
48943:e61816fc5276 48944:25aa8b9f1dae
   136      * The system line separator for writing out line breaks.
   136      * The system line separator for writing out line breaks.
   137      * The default value is from the system property,
   137      * The default value is from the system property,
   138      * but this value can be set through the xsl:output
   138      * but this value can be set through the xsl:output
   139      * extension attribute xalan:line-separator.
   139      * extension attribute xalan:line-separator.
   140      */
   140      */
   141     protected char[] m_lineSep =
   141     protected char[] m_lineSep = System.lineSeparator().toCharArray();
   142         SecuritySupport.getSystemProperty("line.separator").toCharArray();
       
   143 
   142 
   144     /**
   143     /**
   145      * True if the the system line separator is to be used.
   144      * True if the the system line separator is to be used.
   146      */
   145      */
   147     protected boolean m_lineSepUse = true;
   146     protected boolean m_lineSepUse = true;