remove old code related to the previous goal structure

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163469 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-03-07 19:21:38 +00:00
parent 2513cb25aa
commit 72a993eea1
2 changed files with 1 additions and 22 deletions

View File

@ -134,22 +134,6 @@ public class MavenSession
return container.lookup( role, roleHint ); return container.lookup( role, roleHint );
} }
// TODO: can remove when phases are gone
public void release( Object component )
{
if ( component != null )
{
try
{
container.release( component );
}
catch ( Exception e )
{
//@todo what to do here?
}
}
}
public EventDispatcher getEventDispatcher() public EventDispatcher getEventDispatcher()
{ {
return eventDispatcher; return eventDispatcher;

View File

@ -16,11 +16,6 @@ import java.util.StringTokenizer;
* *
* @description Run tests using surefire * @description Run tests using surefire
* *
* @prereq compiler:compile
* @prereq compiler:testCompile
* @prereq resources:resources
* @prereq resources:testResources
*
* @parameter * @parameter
* name="mavenRepoLocal" * name="mavenRepoLocal"
* type="String" * type="String"
@ -181,7 +176,7 @@ public class SurefirePlugin
if ( !success ) if ( !success )
{ {
response.setExecutionFailure( true, new SurefireFailureResponse( null ) ); response.setExecutionFailure( new SurefireFailureResponse( null ) );
} }
} }