Title: [2355] trunk: UUID is an immutable type by default.
Revision
2355
Author
joehni
Date
2015-02-20 09:28:38 -0600 (Fri, 20 Feb 2015)

Log Message

UUID is an immutable type by default.

Modified Paths


Diff

Modified: trunk/xstream/src/java/com/thoughtworks/xstream/XStream.java (2354 => 2355)


--- trunk/xstream/src/java/com/thoughtworks/xstream/XStream.java	2015-02-18 22:43:41 UTC (rev 2354)
+++ trunk/xstream/src/java/com/thoughtworks/xstream/XStream.java	2015-02-20 15:28:38 UTC (rev 2355)
@@ -899,6 +899,7 @@
         addImmutableType(URL.class);
         addImmutableType(File.class);
         addImmutableType(Class.class);
+        addImmutableType(UUID.class);
 
         addImmutableType(Collections.EMPTY_LIST.getClass());
         addImmutableType(Collections.EMPTY_SET.getClass());

Modified: trunk/xstream-distribution/src/content/changes.html (2354 => 2355)


--- trunk/xstream-distribution/src/content/changes.html	2015-02-18 22:43:41 UTC (rev 2354)
+++ trunk/xstream-distribution/src/content/changes.html	2015-02-20 15:28:38 UTC (rev 2355)
@@ -50,11 +50,17 @@
    		<li>Generification of the API.</li>
    		<li>Remove any stuff deprecated in XStream 1.2.x.</li>
     </ul>
-<!--
+
     <h1 id="upcoming-1.4.x">Upcoming 1.4.x maintenance release</h1>
 
     <p>Not yet released.</p>
--->
+
+    <h2>Minor changes</h2>
+
+    <ul>
+    	<li>UUID is an immutable type by default.</li>
+    </ul>
+
     <h1 id="1.4.8">1.4.8</h1>
 
     <p>Released February 18, 2015.</p>

To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to