You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by wo...@apache.org on 2013/12/05 21:45:02 UTC

svn commit: r1548293 - /commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/io/SCXMLReader.java

Author: woonsan
Date: Thu Dec  5 20:45:01 2013
New Revision: 1548293

URL: http://svn.apache.org/r1548293
Log:
SCXML-177: copy strict/silent options in the copy constructor as well

Modified:
    commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/io/SCXMLReader.java

Modified: commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/io/SCXMLReader.java
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/io/SCXMLReader.java?rev=1548293&r1=1548292&r2=1548293&view=diff
==============================================================================
--- commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/io/SCXMLReader.java (original)
+++ commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/io/SCXMLReader.java Thu Dec  5 20:45:01 2013
@@ -2483,7 +2483,7 @@ public final class SCXMLReader {
             this(source.factoryId, source.factoryClassLoader, source.allocator, source.properties, source.resolver,
                     source.reporter, source.encoding, source.systemId, source.validate, source.pathResolver,
                     source.parent, source.customActions, source.customActionClassLoader,
-                    source.useContextClassLoaderForCustomActions);
+                    source.useContextClassLoaderForCustomActions, source.silent, source.strict);
         }
 
         /**