Author: vsiveton
Date: Sat Aug 30 07:20:30 2008
New Revision: 690512

URL: http://svn.apache.org/viewvc?rev=690512&view=rev
Log:
o replaced tab by space

Modified:
    
maven/plugins/trunk/maven-help-plugin/src/main/java/org/apache/maven/plugins/help/AllProfilesMojo.java

Modified: 
maven/plugins/trunk/maven-help-plugin/src/main/java/org/apache/maven/plugins/help/AllProfilesMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-help-plugin/src/main/java/org/apache/maven/plugins/help/AllProfilesMojo.java?rev=690512&r1=690511&r2=690512&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-help-plugin/src/main/java/org/apache/maven/plugins/help/AllProfilesMojo.java
 (original)
+++ 
maven/plugins/trunk/maven-help-plugin/src/main/java/org/apache/maven/plugins/help/AllProfilesMojo.java
 Sat Aug 30 07:20:30 2008
@@ -143,7 +143,7 @@
                 {
                     Profile p = (Profile) it.next();
 
-                    descriptionBuffer.append( "\tProfile Id: " ).append( 
p.getId() );
+                    descriptionBuffer.append( "  Profile Id: " ).append( 
p.getId() );
                     descriptionBuffer.append( " (Active: true , Source: " 
).append( p.getSource() ).append( ")\n" );
                 }
 
@@ -153,7 +153,7 @@
                 {
                     Profile p = (Profile) allProfilesByIds.get( (String) 
it.next() );
 
-                    descriptionBuffer.append( "\tProfile Id: " ).append( 
p.getId() );
+                    descriptionBuffer.append( "  Profile Id: " ).append( 
p.getId() );
                     descriptionBuffer.append( " (Active: false , Source: " 
).append( p.getSource() ).append( ")\n" );
                 }
             }


Reply via email to