[webbeans-commits] Webbeans SVN: r1163 - ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/tck.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Thu Jan 22 07:19:11 EST 2009


Author: shane.bryzak at jboss.com
Date: 2009-01-22 07:19:11 -0500 (Thu, 22 Jan 2009)
New Revision: 1163

Modified:
   ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/tck/ContainersImpl.java
Log:
fix exception

Modified: ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/tck/ContainersImpl.java
===================================================================
--- ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/tck/ContainersImpl.java	2009-01-22 12:04:20 UTC (rev 1162)
+++ ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/tck/ContainersImpl.java	2009-01-22 12:19:11 UTC (rev 1163)
@@ -10,8 +10,6 @@
 import org.jboss.webbeans.test.mock.MockBootstrap;
 import org.jboss.webbeans.test.mock.MockWebBeanDiscovery;
 
-import sun.reflect.generics.reflectiveObjects.NotImplementedException;
-
 public class ContainersImpl implements Containers
 {
    
@@ -36,12 +34,12 @@
    public <T> T evaluateValueExpression(String expression, Class<T> expectedType)
    {
       // TODO implement
-      throw new NotImplementedException();
+      throw new UnsupportedOperationException();
    }
  
    public <T> T evaluateMethodExpression(String expression, Class<T> expectedType, Class<?>[] expectedParamTypes)
    {
       // TODO implement
-      throw new NotImplementedException();
+      throw new UnsupportedOperationException();
    }
 }




More information about the weld-commits mailing list