You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2014/04/06 18:34:17 UTC

svn commit: r1585316 - /commons/proper/proxy/trunk/core/src/main/java/org/apache/commons/proxy2/serialization/package-info.java

Author: mbenson
Date: Sun Apr  6 16:34:17 2014
New Revision: 1585316

URL: http://svn.apache.org/r1585316
Log:
move quote

Modified:
    commons/proper/proxy/trunk/core/src/main/java/org/apache/commons/proxy2/serialization/package-info.java

Modified: commons/proper/proxy/trunk/core/src/main/java/org/apache/commons/proxy2/serialization/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/proxy/trunk/core/src/main/java/org/apache/commons/proxy2/serialization/package-info.java?rev=1585316&r1=1585315&r2=1585316&view=diff
==============================================================================
--- commons/proper/proxy/trunk/core/src/main/java/org/apache/commons/proxy2/serialization/package-info.java (original)
+++ commons/proper/proxy/trunk/core/src/main/java/org/apache/commons/proxy2/serialization/package-info.java Sun Apr  6 16:34:17 2014
@@ -17,7 +17,7 @@
 /**
  * The various {@link org.apache.commons.proxy2.ProxyFactory} implementations create {@link Serializable} proxies;
  * however it is not always possible or practical to serialize the complete structure of a given proxy object. The
- * intent of this package is to facilitate the "serialization proxy pattern" by means of the {@code readResolve()} and
+ * intent of this package is to facilitate the "serialization proxy" pattern by means of the {@code readResolve()} and
  * {@code writeReplace} methods supported by Java's serialization mechanism. This would normally be problematic with
  * Commons Proxy because its proxies are generalized to expose only methods declared by superclasses (where applicable)
  * or proxied interfaces. Therefore we declare the following interfaces: