Author: jcarman Date: Sat Jul 27 02:28:41 2013 New Revision: 1507562 URL: http://svn.apache.org/r1507562 Log: Removing unused imports (only used in javadoc comments).
Modified: commons/proper/proxy/branches/version-2.0-work/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassGenerator.java commons/proper/proxy/branches/version-2.0-work/stub/src/main/java/org/apache/commons/proxy2/stub/AnnotationConfigurer.java Modified: commons/proper/proxy/branches/version-2.0-work/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassGenerator.java URL: http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassGenerator.java?rev=1507562&r1=1507561&r2=1507562&view=diff ============================================================================== --- commons/proper/proxy/branches/version-2.0-work/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassGenerator.java (original) +++ commons/proper/proxy/branches/version-2.0-work/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassGenerator.java Sat Jul 27 02:28:41 2013 @@ -17,12 +17,10 @@ package org.apache.commons.proxy2.impl; -import org.apache.commons.proxy2.ProxyFactory; - /** * A proxy class generator generates Class instances for a given combination of interfaces - * in a given classloader. Typically, in the context of a {@link ProxyFactory} implementation, - * an instance will generate proxy class instances for a specific type of proxies (interceptor, + * in a given classloader. Typically, in the context of a {@link org.apache.commons.proxy2.ProxyFactory} + * implementation, an instance will generate proxy class instances for a specific type of proxies (interceptor, * invoker, etc.) and will be associated with a corresponding {@link ProxyClassCache}. * * @author James Carman Modified: commons/proper/proxy/branches/version-2.0-work/stub/src/main/java/org/apache/commons/proxy2/stub/AnnotationConfigurer.java URL: http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/stub/src/main/java/org/apache/commons/proxy2/stub/AnnotationConfigurer.java?rev=1507562&r1=1507561&r2=1507562&view=diff ============================================================================== --- commons/proper/proxy/branches/version-2.0-work/stub/src/main/java/org/apache/commons/proxy2/stub/AnnotationConfigurer.java (original) +++ commons/proper/proxy/branches/version-2.0-work/stub/src/main/java/org/apache/commons/proxy2/stub/AnnotationConfigurer.java Sat Jul 27 02:28:41 2013 @@ -17,7 +17,6 @@ package org.apache.commons.proxy2.stub; import org.apache.commons.lang3.tuple.ImmutablePair; -import org.apache.commons.lang3.tuple.Pair; import java.lang.annotation.Annotation; @@ -72,7 +71,7 @@ public abstract class AnnotationConfigur /** * Get the registered {@link AnnotationFactory}/{@link ClassLoader}. - * @return a {@link Pair} + * @return a {@link org.apache.commons.lang3.tuple.Pair} * @throws IllegalStateException if no ongoing annotation stubbing could be detected */ synchronized ImmutablePair<AnnotationFactory, ClassLoader> requireContext() {