Author: jcarman
Date: Sat Jul 27 02:27:07 2013
New Revision: 1507561

URL: http://svn.apache.org/r1507561
Log:
Removing unchecked exception from throws clause.

Modified:
    
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/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=1507561&r1=1507560&r2=1507561&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:27:07 2013
@@ -75,7 +75,7 @@ public abstract class AnnotationConfigur
      * @return a {@link Pair}
      * @throws IllegalStateException if no ongoing annotation stubbing could 
be detected
      */
-    synchronized ImmutablePair<AnnotationFactory, ClassLoader> 
requireContext() throws IllegalStateException {
+    synchronized ImmutablePair<AnnotationFactory, ClassLoader> 
requireContext() {
         ImmutablePair<AnnotationFactory, ClassLoader> result = 
AnnotationFactory.CONTEXT.get();
         if (result == null) {
             throw new IllegalStateException("Could not detect ongoing 
annotation stubbing");


Reply via email to