o renaming a couple methods

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@171252 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2005-05-21 20:36:27 +00:00
parent 34530a8258
commit 098ae44be0
1 changed files with 6 additions and 6 deletions

View File

@ -70,15 +70,15 @@ public class PrepareReleaseMojo
protected void executeTask()
throws MojoExecutionException
{
checkStatus();
checkForLocalModifications();
checkForPresenceOfSnapshots();
transformPom();
checkInPom();
checkInReleaseVersionPom();
tag();
tagRelease();
}
private boolean isSnapshot( String version )
@ -86,7 +86,7 @@ private boolean isSnapshot( String version )
return version.endsWith( SNAPSHOT );
}
private void checkStatus()
private void checkForLocalModifications()
throws MojoExecutionException
{
getLog().info( "Verifying there are no local modifications ..." );
@ -320,7 +320,7 @@ private void transformPom()
*
* @throws MojoExecutionException
*/
private void checkInPom()
private void checkInReleaseVersionPom()
throws MojoExecutionException
{
try
@ -348,7 +348,7 @@ private void checkInPom()
*
* @throws MojoExecutionException
*/
private void tag()
private void tagRelease()
throws MojoExecutionException
{