Skip to content

Commit

Permalink
Tidy up API and javadoc for TCK
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@1554 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Feb 16, 2009
1 parent ed0aabc commit 67e91a7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
Expand Up @@ -41,15 +41,15 @@ public void deploy(InputStream archiveStream, String name) throws DeploymentExce
}
}

public void undeploy(String name) throws DeploymentException, IOException
public void undeploy(String name) throws IOException
{
try
{
testServices.undeploy(getTmpArchiveName(name));
}
catch (Exception e)
{
throw new DeploymentException("Error deploying " + name, e);
throw new IOException("Error undeploying " + name, e);
}
}

Expand Down
Expand Up @@ -81,7 +81,7 @@ public void deploy(InputStream archiveStream, String name) throws DeploymentExce
}
}

public void undeploy(String name) throws DeploymentException, IOException
public void undeploy(String name) throws IOException
{
try
{
Expand Down
Expand Up @@ -52,5 +52,21 @@ public void deploy(Iterable<Class<?>> classes, Iterable<URL> beansXml) throws De
{
deploy(null, classes, beansXml);
}

public void cleanup()
{
// TODO Auto-generated method stub

}

public void setup()
{
// No-op
}

public void undeploy()
{
// No-op
}

}

0 comments on commit 67e91a7

Please sign in to comment.