You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by js...@apache.org on 2006/05/18 04:07:22 UTC

svn commit: r407432 - /geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/config/SerializedConfigurationMarshaler.java

Author: jsisson
Date: Wed May 17 19:07:22 2006
New Revision: 407432

URL: http://svn.apache.org/viewvc?rev=407432&view=rev
Log:
correct comment

Modified:
    geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/config/SerializedConfigurationMarshaler.java

Modified: geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/config/SerializedConfigurationMarshaler.java
URL: http://svn.apache.org/viewvc/geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/config/SerializedConfigurationMarshaler.java?rev=407432&r1=407431&r2=407432&view=diff
==============================================================================
--- geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/config/SerializedConfigurationMarshaler.java (original)
+++ geronimo/branches/1.1/modules/kernel/src/java/org/apache/geronimo/kernel/config/SerializedConfigurationMarshaler.java Wed May 17 19:07:22 2006
@@ -40,7 +40,7 @@
         if (pushbackInputStream.read(streamHeader) != 2) throw new AssertionError("Cound not read stream header");
         pushbackInputStream.unread(streamHeader);
 
-        // if this is a serialized config, fallback to the serialization marshaler
+        // if this isn't a serialized config, fallback to the xstream marshaler
         if (SERIALIZED_MAGIC[0] != streamHeader[0] || SERIALIZED_MAGIC[1] != streamHeader[1]) {
             ConfigurationMarshaler marshaler;
             try {