mirror of https://github.com/apache/maven.git
o Replaced usage of StringBuffer with StringBuilder
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@795584 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
12ea9f5244
commit
01f7692db0
|
@ -224,14 +224,14 @@ public class DefaultArtifact
|
||||||
|
|
||||||
public String getDependencyConflictId()
|
public String getDependencyConflictId()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder( 128 );
|
||||||
sb.append( getGroupId() );
|
sb.append( getGroupId() );
|
||||||
sb.append( ":" );
|
sb.append( ":" );
|
||||||
appendArtifactTypeClassifierString( sb );
|
appendArtifactTypeClassifierString( sb );
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void appendArtifactTypeClassifierString( StringBuffer sb )
|
private void appendArtifactTypeClassifierString( StringBuilder sb )
|
||||||
{
|
{
|
||||||
sb.append( getArtifactId() );
|
sb.append( getArtifactId() );
|
||||||
sb.append( ":" );
|
sb.append( ":" );
|
||||||
|
@ -276,7 +276,7 @@ public class DefaultArtifact
|
||||||
|
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder();
|
||||||
if ( getGroupId() != null )
|
if ( getGroupId() != null )
|
||||||
{
|
{
|
||||||
sb.append( getGroupId() );
|
sb.append( getGroupId() );
|
||||||
|
|
|
@ -167,7 +167,7 @@ public class DefaultArtifactRepository
|
||||||
|
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
||||||
sb.append( " id: " ).append( getId() ).append( "\n" );
|
sb.append( " id: " ).append( getId() ).append( "\n" );
|
||||||
sb.append( " url: " ).append( getUrl() ).append( "\n" );
|
sb.append( " url: " ).append( getUrl() ).append( "\n" );
|
||||||
|
|
|
@ -124,7 +124,7 @@ public class MavenArtifactRepository
|
||||||
|
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
||||||
sb.append( " id: " ).append( getId() ).append( "\n" );
|
sb.append( " id: " ).append( getId() ).append( "\n" );
|
||||||
sb.append( " url: " ).append( getUrl() ).append( "\n" );
|
sb.append( " url: " ).append( getUrl() ).append( "\n" );
|
||||||
|
|
|
@ -47,7 +47,7 @@ public class DefaultRepositoryLayout
|
||||||
{
|
{
|
||||||
ArtifactHandler artifactHandler = artifact.getArtifactHandler();
|
ArtifactHandler artifactHandler = artifact.getArtifactHandler();
|
||||||
|
|
||||||
StringBuffer path = new StringBuffer();
|
StringBuilder path = new StringBuilder( 128 );
|
||||||
|
|
||||||
path.append( formatAsDirectory( artifact.getGroupId() ) ).append( PATH_SEPARATOR );
|
path.append( formatAsDirectory( artifact.getGroupId() ) ).append( PATH_SEPARATOR );
|
||||||
path.append( artifact.getArtifactId() ).append( PATH_SEPARATOR );
|
path.append( artifact.getArtifactId() ).append( PATH_SEPARATOR );
|
||||||
|
@ -75,7 +75,7 @@ public class DefaultRepositoryLayout
|
||||||
private String pathOfRepositoryMetadata( ArtifactMetadata metadata,
|
private String pathOfRepositoryMetadata( ArtifactMetadata metadata,
|
||||||
String filename )
|
String filename )
|
||||||
{
|
{
|
||||||
StringBuffer path = new StringBuffer();
|
StringBuilder path = new StringBuilder( 128 );
|
||||||
|
|
||||||
path.append( formatAsDirectory( metadata.getGroupId() ) ).append( PATH_SEPARATOR );
|
path.append( formatAsDirectory( metadata.getGroupId() ) ).append( PATH_SEPARATOR );
|
||||||
if ( !metadata.storedInGroupDirectory() )
|
if ( !metadata.storedInGroupDirectory() )
|
||||||
|
|
|
@ -29,7 +29,7 @@ public class FlatRepositoryLayout
|
||||||
{
|
{
|
||||||
ArtifactHandler artifactHandler = artifact.getArtifactHandler();
|
ArtifactHandler artifactHandler = artifact.getArtifactHandler();
|
||||||
|
|
||||||
StringBuffer path = new StringBuffer();
|
StringBuilder path = new StringBuilder( 128 );
|
||||||
|
|
||||||
path.append( artifact.getArtifactId() ).append( ARTIFACT_SEPARATOR ).append( artifact.getVersion() );
|
path.append( artifact.getArtifactId() ).append( ARTIFACT_SEPARATOR ).append( artifact.getVersion() );
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ public class FlatRepositoryLayout
|
||||||
|
|
||||||
private String pathOfRepositoryMetadata( String filename )
|
private String pathOfRepositoryMetadata( String filename )
|
||||||
{
|
{
|
||||||
StringBuffer path = new StringBuffer();
|
StringBuilder path = new StringBuilder( 128 );
|
||||||
|
|
||||||
path.append( filename );
|
path.append( filename );
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ public class LegacyRepositoryLayout
|
||||||
{
|
{
|
||||||
ArtifactHandler artifactHandler = artifact.getArtifactHandler();
|
ArtifactHandler artifactHandler = artifact.getArtifactHandler();
|
||||||
|
|
||||||
StringBuffer path = new StringBuffer();
|
StringBuilder path = new StringBuilder( 128 );
|
||||||
|
|
||||||
path.append( artifact.getGroupId() ).append( '/' );
|
path.append( artifact.getGroupId() ).append( '/' );
|
||||||
path.append( artifactHandler.getDirectory() ).append( '/' );
|
path.append( artifactHandler.getDirectory() ).append( '/' );
|
||||||
|
@ -71,7 +71,7 @@ public class LegacyRepositoryLayout
|
||||||
private String pathOfRepositoryMetadata( ArtifactMetadata metadata,
|
private String pathOfRepositoryMetadata( ArtifactMetadata metadata,
|
||||||
String filename )
|
String filename )
|
||||||
{
|
{
|
||||||
StringBuffer path = new StringBuffer();
|
StringBuilder path = new StringBuilder( 128 );
|
||||||
|
|
||||||
path.append( metadata.getGroupId() ).append( PATH_SEPARATOR ).append( "poms" ).append( PATH_SEPARATOR );
|
path.append( metadata.getGroupId() ).append( PATH_SEPARATOR ).append( "poms" ).append( PATH_SEPARATOR );
|
||||||
|
|
||||||
|
|
|
@ -205,7 +205,7 @@ public abstract class AbstractRepositoryMetadata
|
||||||
|
|
||||||
public String extendedToString()
|
public String extendedToString()
|
||||||
{
|
{
|
||||||
StringBuffer buffer = new StringBuffer();
|
StringBuilder buffer = new StringBuilder();
|
||||||
|
|
||||||
buffer.append( "\nRepository Metadata\n--------------------------" );
|
buffer.append( "\nRepository Metadata\n--------------------------" );
|
||||||
buffer.append( "\nGroupId: " ).append( getGroupId() );
|
buffer.append( "\nGroupId: " ).append( getGroupId() );
|
||||||
|
|
|
@ -163,7 +163,7 @@ public class AbstractArtifactResolutionException
|
||||||
protected static String constructArtifactPath( List path,
|
protected static String constructArtifactPath( List path,
|
||||||
String indentation )
|
String indentation )
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
||||||
if ( path != null )
|
if ( path != null )
|
||||||
{
|
{
|
||||||
|
@ -194,7 +194,7 @@ public class AbstractArtifactResolutionException
|
||||||
List remoteRepositories,
|
List remoteRepositories,
|
||||||
List path )
|
List path )
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
||||||
sb.append( message );
|
sb.append( message );
|
||||||
sb.append( LS );
|
sb.append( LS );
|
||||||
|
@ -249,7 +249,7 @@ public class AbstractArtifactResolutionException
|
||||||
String downloadUrl,
|
String downloadUrl,
|
||||||
List path )
|
List path )
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer( message );
|
StringBuilder sb = new StringBuilder( message );
|
||||||
|
|
||||||
if ( !"pom".equals( type ) )
|
if ( !"pom".equals( type ) )
|
||||||
{
|
{
|
||||||
|
|
|
@ -171,7 +171,7 @@ public class ArtifactResolutionRequest
|
||||||
|
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer()
|
StringBuilder sb = new StringBuilder()
|
||||||
.append( "REQUEST: " ).append( "\n" )
|
.append( "REQUEST: " ).append( "\n" )
|
||||||
.append( "artifact: " ).append( artifact ).append( "\n" )
|
.append( "artifact: " ).append( artifact ).append( "\n" )
|
||||||
.append( artifactDependencies ).append( "\n" )
|
.append( artifactDependencies ).append( "\n" )
|
||||||
|
|
|
@ -325,7 +325,7 @@ public class ArtifactResolutionResult
|
||||||
|
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
||||||
if ( artifacts != null )
|
if ( artifacts != null )
|
||||||
{
|
{
|
||||||
|
|
|
@ -84,7 +84,7 @@ public class MultipleArtifactsNotFoundException
|
||||||
|
|
||||||
private static String constructMessage( List<Artifact> artifacts )
|
private static String constructMessage( List<Artifact> artifacts )
|
||||||
{
|
{
|
||||||
StringBuffer buffer = new StringBuffer( "Missing:\n" );
|
StringBuilder buffer = new StringBuilder( "Missing:\n" );
|
||||||
|
|
||||||
buffer.append( "----------\n" );
|
buffer.append( "----------\n" );
|
||||||
|
|
||||||
|
|
|
@ -303,7 +303,7 @@ public class ComparableVersion
|
||||||
|
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer buffer = new StringBuffer( "(" );
|
StringBuilder buffer = new StringBuilder( "(" );
|
||||||
for( Iterator iter = iterator(); iter.hasNext(); )
|
for( Iterator iter = iterator(); iter.hasNext(); )
|
||||||
{
|
{
|
||||||
buffer.append( iter.next() );
|
buffer.append( iter.next() );
|
||||||
|
|
|
@ -208,7 +208,7 @@ public class DefaultArtifactVersion
|
||||||
@Override
|
@Override
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer buf = new StringBuffer();
|
StringBuilder buf = new StringBuilder();
|
||||||
if ( majorVersion != null )
|
if ( majorVersion != null )
|
||||||
{
|
{
|
||||||
buf.append( majorVersion );
|
buf.append( majorVersion );
|
||||||
|
|
|
@ -37,7 +37,7 @@ public class ManagedVersionMap
|
||||||
|
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer buffer = new StringBuffer( "ManagedVersionMap (" + size() + " entries)\n" );
|
StringBuilder buffer = new StringBuilder( "ManagedVersionMap (" + size() + " entries)\n" );
|
||||||
Iterator iter = keySet().iterator();
|
Iterator iter = keySet().iterator();
|
||||||
while ( iter.hasNext() )
|
while ( iter.hasNext() )
|
||||||
{
|
{
|
||||||
|
|
|
@ -181,7 +181,7 @@ public class Restriction
|
||||||
|
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer buf = new StringBuffer();
|
StringBuilder buf = new StringBuilder();
|
||||||
|
|
||||||
buf.append( isLowerBoundInclusive() ? "[" : "(" );
|
buf.append( isLowerBoundInclusive() ? "[" : "(" );
|
||||||
if ( getLowerBound() != null )
|
if ( getLowerBound() != null )
|
||||||
|
|
|
@ -504,7 +504,7 @@ public class VersionRange
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
StringBuffer buf = new StringBuffer();
|
StringBuilder buf = new StringBuilder();
|
||||||
for ( Iterator i = restrictions.iterator(); i.hasNext(); )
|
for ( Iterator i = restrictions.iterator(); i.hasNext(); )
|
||||||
{
|
{
|
||||||
Restriction r = (Restriction) i.next();
|
Restriction r = (Restriction) i.next();
|
||||||
|
|
|
@ -737,7 +737,7 @@ public class DefaultModelInheritanceAssembler
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StringBuffer cleanedPath = new StringBuffer();
|
StringBuilder cleanedPath = new StringBuilder();
|
||||||
|
|
||||||
while ( !pathElements.isEmpty() )
|
while ( !pathElements.isEmpty() )
|
||||||
{
|
{
|
||||||
|
|
|
@ -73,7 +73,7 @@ public class ModelValidationResult
|
||||||
return indentation + "There were no validation errors.";
|
return indentation + "There were no validation errors.";
|
||||||
}
|
}
|
||||||
|
|
||||||
StringBuffer message = new StringBuffer();
|
StringBuilder message = new StringBuilder();
|
||||||
|
|
||||||
// if ( messages.size() == 1 )
|
// if ( messages.size() == 1 )
|
||||||
// {
|
// {
|
||||||
|
|
|
@ -134,7 +134,7 @@ public class MetadataResolutionRequest
|
||||||
|
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer()
|
StringBuilder sb = new StringBuilder()
|
||||||
.append( "REQUEST: " ).append( "\n" )
|
.append( "REQUEST: " ).append( "\n" )
|
||||||
.append( "artifact: " ).append( mad ).append( "\n" )
|
.append( "artifact: " ).append( mad ).append( "\n" )
|
||||||
.append( artifactDependencies ).append( "\n" )
|
.append( artifactDependencies ).append( "\n" )
|
||||||
|
|
|
@ -326,7 +326,7 @@ public class MetadataResolutionResult
|
||||||
|
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
||||||
if ( artifacts != null )
|
if ( artifacts != null )
|
||||||
{
|
{
|
||||||
|
|
|
@ -352,7 +352,7 @@ public class DefaultUpdateCheckManager
|
||||||
|
|
||||||
public File getTouchfile( Artifact artifact )
|
public File getTouchfile( Artifact artifact )
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append( artifact.getArtifactId() );
|
sb.append( artifact.getArtifactId() );
|
||||||
sb.append( '-' ).append( artifact.getBaseVersion() );
|
sb.append( '-' ).append( artifact.getBaseVersion() );
|
||||||
if ( artifact.getClassifier() != null )
|
if ( artifact.getClassifier() != null )
|
||||||
|
|
|
@ -54,7 +54,7 @@ public abstract class AbstractArtifactMetadata
|
||||||
|
|
||||||
public String extendedToString()
|
public String extendedToString()
|
||||||
{
|
{
|
||||||
StringBuffer buffer = new StringBuffer();
|
StringBuilder buffer = new StringBuilder();
|
||||||
|
|
||||||
buffer.append( "\nArtifact Metadata\n--------------------------" );
|
buffer.append( "\nArtifact Metadata\n--------------------------" );
|
||||||
buffer.append( "\nGroupId: " ).append( getGroupId() );
|
buffer.append( "\nGroupId: " ).append( getGroupId() );
|
||||||
|
|
|
@ -455,7 +455,7 @@ public class DefaultLifecycleExecutor
|
||||||
private String executionDescription( MojoExecution me, MavenProject project )
|
private String executionDescription( MojoExecution me, MavenProject project )
|
||||||
{
|
{
|
||||||
PluginDescriptor pd = me.getMojoDescriptor().getPluginDescriptor();
|
PluginDescriptor pd = me.getMojoDescriptor().getPluginDescriptor();
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder( 128 );
|
||||||
sb.append( "Executing " + pd.getArtifactId() + "[" + pd.getVersion() + "]: " + me.getMojoDescriptor().getGoal() + " on " + project.getArtifactId() );
|
sb.append( "Executing " + pd.getArtifactId() + "[" + pd.getVersion() + "]: " + me.getMojoDescriptor().getGoal() + " on " + project.getArtifactId() );
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
@ -1217,7 +1217,7 @@ public class DefaultLifecycleExecutor
|
||||||
|
|
||||||
if ( warnOfDeprecation )
|
if ( warnOfDeprecation )
|
||||||
{
|
{
|
||||||
StringBuffer buffer = new StringBuffer();
|
StringBuilder buffer = new StringBuilder( 128 );
|
||||||
buffer.append( "In mojo: " ).append( mojoDescriptor.getGoal() ).append( ", parameter: " ).append( param.getName() );
|
buffer.append( "In mojo: " ).append( mojoDescriptor.getGoal() ).append( ", parameter: " ).append( param.getName() );
|
||||||
|
|
||||||
if ( param.getAlias() != null )
|
if ( param.getAlias() != null )
|
||||||
|
@ -1338,7 +1338,7 @@ public class DefaultLifecycleExecutor
|
||||||
// Make sure the parameter is either editable/configurable, or else is NOT specified in the POM
|
// Make sure the parameter is either editable/configurable, or else is NOT specified in the POM
|
||||||
if ( !parameter.isEditable() )
|
if ( !parameter.isEditable() )
|
||||||
{
|
{
|
||||||
StringBuffer errorMessage = new StringBuffer().append( "ERROR: Cannot override read-only parameter: " );
|
StringBuilder errorMessage = new StringBuilder( 128 ).append( "ERROR: Cannot override read-only parameter: " );
|
||||||
errorMessage.append( key );
|
errorMessage.append( key );
|
||||||
errorMessage.append( " in goal: " ).append( goal.getFullGoalName() );
|
errorMessage.append( " in goal: " ).append( goal.getFullGoalName() );
|
||||||
|
|
||||||
|
|
|
@ -67,7 +67,7 @@ public class DebugConfigurationListener
|
||||||
if ( obj != null && obj.getClass().isArray() )
|
if ( obj != null && obj.getClass().isArray() )
|
||||||
{
|
{
|
||||||
int n = Array.getLength( obj );
|
int n = Array.getLength( obj );
|
||||||
StringBuffer buf = new StringBuffer( 256 );
|
StringBuilder buf = new StringBuilder( 256 );
|
||||||
buf.append( '[' );
|
buf.append( '[' );
|
||||||
for ( int i = 0; i < n; i++ )
|
for ( int i = 0; i < n; i++ )
|
||||||
{
|
{
|
||||||
|
|
|
@ -612,7 +612,7 @@ public class DefaultPluginManager
|
||||||
logger.fatalError( configurator.getClass().getName() + "#configureComponent(...) caused a linkage error (" + e.getClass().getName() + ") and may be out-of-date. Check the realms:" );
|
logger.fatalError( configurator.getClass().getName() + "#configureComponent(...) caused a linkage error (" + e.getClass().getName() + ") and may be out-of-date. Check the realms:" );
|
||||||
|
|
||||||
ClassRealm pluginRealm = mojoDescriptor.getPluginDescriptor().getClassRealm();
|
ClassRealm pluginRealm = mojoDescriptor.getPluginDescriptor().getClassRealm();
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append( "Plugin realm = " + pluginRealm.getId() ).append( '\n' );
|
sb.append( "Plugin realm = " + pluginRealm.getId() ).append( '\n' );
|
||||||
for ( int i = 0; i < pluginRealm.getURLs().length; i++ )
|
for ( int i = 0; i < pluginRealm.getURLs().length; i++ )
|
||||||
{
|
{
|
||||||
|
@ -625,7 +625,7 @@ public class DefaultPluginManager
|
||||||
logger.fatalError( sb.toString() );
|
logger.fatalError( sb.toString() );
|
||||||
|
|
||||||
ClassRealm containerRealm = container.getContainerRealm();
|
ClassRealm containerRealm = container.getContainerRealm();
|
||||||
sb = new StringBuffer();
|
sb = new StringBuilder();
|
||||||
sb.append( "Container realm = " + containerRealm.getId() ).append( '\n' );
|
sb.append( "Container realm = " + containerRealm.getId() ).append( '\n' );
|
||||||
for ( int i = 0; i < containerRealm.getURLs().length; i++ )
|
for ( int i = 0; i < containerRealm.getURLs().length; i++ )
|
||||||
{
|
{
|
||||||
|
|
|
@ -102,7 +102,7 @@ public class MojoExecution
|
||||||
|
|
||||||
public String identify()
|
public String identify()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder( 256 );
|
||||||
|
|
||||||
sb.append( executionId );
|
sb.append( executionId );
|
||||||
sb.append( configuration.toString() );
|
sb.append( configuration.toString() );
|
||||||
|
|
|
@ -55,7 +55,7 @@ public class PluginParameterException
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void decomposeParameterIntoUserInstructions( MojoDescriptor mojo, Parameter param,
|
private static void decomposeParameterIntoUserInstructions( MojoDescriptor mojo, Parameter param,
|
||||||
StringBuffer messageBuffer )
|
StringBuilder messageBuffer )
|
||||||
{
|
{
|
||||||
String expression = param.getExpression();
|
String expression = param.getExpression();
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ public class PluginParameterException
|
||||||
|
|
||||||
public String buildDiagnosticMessage()
|
public String buildDiagnosticMessage()
|
||||||
{
|
{
|
||||||
StringBuffer messageBuffer = new StringBuffer();
|
StringBuilder messageBuffer = new StringBuilder( 256 );
|
||||||
|
|
||||||
List params = getParameters();
|
List params = getParameters();
|
||||||
MojoDescriptor mojo = getMojoDescriptor();
|
MojoDescriptor mojo = getMojoDescriptor();
|
||||||
|
|
|
@ -1691,7 +1691,7 @@ public class MavenProject
|
||||||
@Override
|
@Override
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer( 30 );
|
StringBuilder sb = new StringBuilder( 128 );
|
||||||
sb.append( "MavenProject: " );
|
sb.append( "MavenProject: " );
|
||||||
sb.append( getGroupId() );
|
sb.append( getGroupId() );
|
||||||
sb.append( ":" );
|
sb.append( ":" );
|
||||||
|
|
|
@ -93,7 +93,7 @@ public final class SettingsValidationResult
|
||||||
return indentation + "There were no validation errors.";
|
return indentation + "There were no validation errors.";
|
||||||
}
|
}
|
||||||
|
|
||||||
StringBuffer message = new StringBuffer();
|
StringBuilder message = new StringBuilder( 256 );
|
||||||
|
|
||||||
// if ( messages.size() == 1 )
|
// if ( messages.size() == 1 )
|
||||||
// {
|
// {
|
||||||
|
|
|
@ -663,7 +663,7 @@
|
||||||
|
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder( 128 );
|
||||||
sb.append( "Mirror[" );
|
sb.append( "Mirror[" );
|
||||||
sb.append( "id=" ).append( this.getId() );
|
sb.append( "id=" ).append( this.getId() );
|
||||||
sb.append( ",mirrorOf=" ).append( mirrorOf );
|
sb.append( ",mirrorOf=" ).append( mirrorOf );
|
||||||
|
|
|
@ -1689,13 +1689,13 @@ public class PomConstructionTest
|
||||||
assertEquals( expected, pom.getValue( expression ) );
|
assertEquals( expected, pom.getValue( expression ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String createPath(List<String> elements)
|
private static String createPath( List<String> elements )
|
||||||
{
|
{
|
||||||
StringBuffer buffer = new StringBuffer();
|
StringBuilder buffer = new StringBuilder( 256 );
|
||||||
for(String s : elements)
|
for ( String s : elements )
|
||||||
{
|
{
|
||||||
buffer.append(s).append(File.separator);
|
buffer.append( s ).append( File.separator );
|
||||||
}
|
}
|
||||||
return buffer.toString().substring(0, buffer.toString().length() - 1);
|
return buffer.toString().substring( 0, buffer.toString().length() - 1 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -152,7 +152,7 @@ public class CLIManager
|
||||||
{
|
{
|
||||||
List<String> cleaned = new ArrayList<String>();
|
List<String> cleaned = new ArrayList<String>();
|
||||||
|
|
||||||
StringBuffer currentArg = null;
|
StringBuilder currentArg = null;
|
||||||
|
|
||||||
for ( int i = 0; i < args.length; i++ )
|
for ( int i = 0; i < args.length; i++ )
|
||||||
{
|
{
|
||||||
|
@ -170,7 +170,7 @@ public class CLIManager
|
||||||
}
|
}
|
||||||
|
|
||||||
// start building an argument here.
|
// start building an argument here.
|
||||||
currentArg = new StringBuffer( arg.substring( 1 ) );
|
currentArg = new StringBuilder( arg.substring( 1 ) );
|
||||||
addedToBuffer = true;
|
addedToBuffer = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -615,7 +615,7 @@ public class MavenModelMerger
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StringBuffer cleanedPath = new StringBuffer();
|
StringBuilder cleanedPath = new StringBuilder( 128 );
|
||||||
|
|
||||||
while ( !pathElements.isEmpty() )
|
while ( !pathElements.isEmpty() )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue