Skip to content

Commit

Permalink
fix exception
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@1163 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
sbryzak committed Jan 22, 2009
1 parent 3202619 commit 84882bd
Showing 1 changed file with 2 additions and 4 deletions.
Expand Up @@ -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
{

Expand All @@ -36,12 +34,12 @@ public Manager deploy(java.lang.Class<?>... classes)
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();
}
}

0 comments on commit 84882bd

Please sign in to comment.