jaxp/src/com/sun/org/apache/xml/internal/serializer/SerializerFactory.java
changeset 25834 aba3efbf4ec5
parent 12458 d601e4bba306
equal deleted inserted replaced
25833:054a597b18f8 25834:aba3efbf4ec5
   134         Object obj = cls.newInstance();
   134         Object obj = cls.newInstance();
   135 
   135 
   136         if (obj instanceof SerializationHandler)
   136         if (obj instanceof SerializationHandler)
   137         {
   137         {
   138               // this is one of the supplied serializers
   138               // this is one of the supplied serializers
   139             ser = (Serializer) cls.newInstance();
   139             ser = (Serializer) obj;
   140             ser.setOutputFormat(format);
   140             ser.setOutputFormat(format);
   141         }
   141         }
   142         else
   142         else
   143         {
   143         {
   144               /*
   144               /*