santiagopg    2002/06/20 05:20:57

  Modified:    java/src/org/apache/xalan/xsltc/runtime
                        AbstractTranslet.java
  Log:
  Rollback to revision 1.39
  
  Revision  Changes    Path
  1.41      +2 -6      
xml-xalan/java/src/org/apache/xalan/xsltc/runtime/AbstractTranslet.java
  
  Index: AbstractTranslet.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/runtime/AbstractTranslet.java,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- AbstractTranslet.java     19 Jun 2002 20:36:05 -0000      1.40
  +++ AbstractTranslet.java     20 Jun 2002 12:20:57 -0000      1.41
  @@ -575,17 +575,13 @@
                if (_version != null) {
                    handler.setVersion(_version);
                }
  -             if (_indent) {
  -                 handler.setIndent(_indent);
  -             }
  +             handler.setIndent(_indent);
                if (_doctypeSystem != null) {
                    handler.setDoctype(_doctypeSystem, _doctypePublic);
                }
            }
            else if (_method.equals("html")) {
  -             if (!_indent) {
  -                 handler.setIndent(_indent);
  -             }
  +             handler.setIndent(_indent);
                handler.setDoctype(_doctypeSystem, _doctypePublic);
                if (_mediaType != null) {
                    handler.setMediaType(_mediaType);
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to