code formatting

This commit is contained in:
Hervé Boutemy 2014-06-14 00:08:07 +02:00
parent e112cd89c7
commit 6683e8681f
4 changed files with 19 additions and 13 deletions

View File

@ -205,7 +205,8 @@ public final void parseVersion( String version )
private static Integer getNextIntegerToken( StringTokenizer tok )
{
try {
try
{
String s = tok.nextToken();
if ( ( s.length() > 1 ) && s.startsWith( "0" ) )
{

View File

@ -201,7 +201,7 @@ public void testNonNumericVersionRepresentationReturnsANumberFormatException()
}
catch ( Exception e )
{
assertTrue("We expect a NumberFormatException to be thrown.", e instanceof NumberFormatException);
assertTrue( "We expect a NumberFormatException to be thrown.", e instanceof NumberFormatException );
}
}

View File

@ -23,13 +23,16 @@
import org.apache.maven.artifact.repository.DefaultArtifactRepository;
import org.codehaus.plexus.PlexusTestCase;
public class DefaultMirrorSelectorTest extends PlexusTestCase {
public class DefaultMirrorSelectorTest
extends PlexusTestCase
{
public void testMirrorWithMirroOfPatternContainingANegationIsNotSelected() {
ArtifactRepository repository = new DefaultArtifactRepository("snapshots.repo", "http://whatever", null);
String pattern = "external:*, !snapshots.repo";
boolean matches = DefaultMirrorSelector.matchPattern(repository, pattern);
System.out.println(matches);
assertFalse(matches);
}
public void testMirrorWithMirroOfPatternContainingANegationIsNotSelected()
{
ArtifactRepository repository = new DefaultArtifactRepository( "snapshots.repo", "http://whatever", null );
String pattern = "external:*, !snapshots.repo";
boolean matches = DefaultMirrorSelector.matchPattern( repository, pattern );
System.out.println( matches );
assertFalse( matches );
}
}

View File

@ -105,8 +105,10 @@ else if ( isActiveByDefault( profile ) )
private boolean isActive( Profile profile, ProfileActivationContext context, ModelProblemCollector problems )
{
boolean isActive = false;
for ( ProfileActivator activator : activators ) {
if ( activator.presentInConfig( profile, context, problems ) ) {
for ( ProfileActivator activator : activators )
{
if ( activator.presentInConfig( profile, context, problems ) )
{
isActive = true;
}
}