(no commit message)
[utils] / support / general / src / main / java / org / wamblee / general / SerializableProxyFactory.java
index 34b7e3a564a99dc04a64006cfbf34a3fd3fe39bc..733224a0003e5494ce3afa24221077a0444266a6 100644 (file)
@@ -40,16 +40,6 @@ public class SerializableProxyFactory<T> {
     private Class clazz;
     private T proxy;
 
-    /**
-     * Constructs the factory.
-     * 
-     * @param aClass
-     *            Interface class of the service to proxy.
-     */
-    public SerializableProxyFactory(Class<T> aClass) {
-        this(aClass, null);
-    }
-
     /**
      * Constructs the factory with a callback to create thread-specific objects
      * automatically.
@@ -85,8 +75,7 @@ public class SerializableProxyFactory<T> {
     }
 
     /**
-     * Gets the proxy that delegates to the thread-specific instance set by
-     * {@link #set(Object)}
+     * Gets the serializable proxy that delegates to the object passed in the constructor.
      * 
      * @return Proxy.
      */