Author: dennisl
Date: Sun Mar 22 15:18:54 2009
New Revision: 757200

URL: http://svn.apache.org/viewvc?rev=757200&view=rev
Log:
o Fix an error reported by Checkstyle.

Modified:
    
maven/plugins/trunk/maven-install-plugin/src/main/java/org/apache/maven/plugin/install/InstallFileMojo.java

Modified: 
maven/plugins/trunk/maven-install-plugin/src/main/java/org/apache/maven/plugin/install/InstallFileMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-install-plugin/src/main/java/org/apache/maven/plugin/install/InstallFileMojo.java?rev=757200&r1=757199&r2=757200&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-install-plugin/src/main/java/org/apache/maven/plugin/install/InstallFileMojo.java
 (original)
+++ 
maven/plugins/trunk/maven-install-plugin/src/main/java/org/apache/maven/plugin/install/InstallFileMojo.java
 Sun Mar 22 15:18:54 2009
@@ -158,7 +158,7 @@
     /**
      * The path for a specific local repository directory. If not specified 
the local repository path configured in the
      * Maven settings will be used.
-     * 
+     *
      * @parameter expression="${localRepositoryPath}"
      * @since 2.2
      */
@@ -166,7 +166,7 @@
 
     /**
      * The component used to validate the user-supplied artifact coordinates.
-     * 
+     *
      * @component
      */
     private ModelValidator modelValidator;
@@ -188,7 +188,8 @@
                 getLog().debug( "Layout: " + layout.getClass() );
 
                 localRepository =
-                    new DefaultArtifactRepository( localRepository.getId(), 
localRepositoryPath.toURL().toString(), layout );
+                    new DefaultArtifactRepository( localRepository.getId(), 
localRepositoryPath.toURL().toString(),
+                                                   layout );
             }
             catch ( MalformedURLException e )
             {
@@ -363,7 +364,7 @@
 
     /**
      * Validates the user-supplied artifact information.
-     * 
+     *
      * @throws MojoExecutionException If any artifact coordinate is invalid.
      */
     private void validateArtifactInformation()
@@ -382,7 +383,7 @@
 
     /**
      * Generates a minimal model from the user-supplied artifact information.
-     * 
+     *
      * @return The generated model, never <code>null</code>.
      */
     private Model generateModel()


Reply via email to