Skip to content

Commit

Permalink
Remove unused method
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@3476 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Aug 13, 2009
1 parent 4409a93 commit e0191b5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
15 changes: 0 additions & 15 deletions spi/src/main/java/org/jboss/webbeans/ejb/spi/EjbServices.java
Expand Up @@ -56,19 +56,4 @@ public interface EjbServices extends Service
*/
public SessionObjectReference resolveEjb(EjbDescriptor<?> ejbDescriptor);

/**
* Resolve a remote EJB reference. At least one of the parameters will not be
* null.
*
* @param jndiName the JNDI name
* @param mappedName the mapped name
* @param ejbLink the EJB link name
* @return the remote EJB reference
* @throws IllegalStateException
* if no EJBs can be resolved for injection
* @throws IllegalArgumentException
* if jndiName, mappedName and ejbLink are null
*/
public Object resolveRemoteEjb(String jndiName, String mappedName, String ejbLink);

}
Expand Up @@ -47,11 +47,6 @@ public SessionObjectReference resolveEjb(EjbDescriptor<?> ejbDescriptor)
return delegate().resolveEjb(ejbDescriptor);
}

public Object resolveRemoteEjb(String jndiName, String mappedName, String ejbLink)
{
return delegate().resolveRemoteEjb(jndiName, mappedName, ejbLink);
}

@Override
public boolean equals(Object obj)
{
Expand Down

0 comments on commit e0191b5

Please sign in to comment.