You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by br...@apache.org on 2012/01/06 03:33:44 UTC

svn commit: r1227949 - /incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/java/npanday/plugin/aspnet/ProcessWebConfigMojo.java

Author: brett
Date: Fri Jan  6 03:33:43 2012
New Revision: 1227949

URL: http://svn.apache.org/viewvc?rev=1227949&view=rev
Log:


Modified:
    incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/java/npanday/plugin/aspnet/ProcessWebConfigMojo.java

Modified: incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/java/npanday/plugin/aspnet/ProcessWebConfigMojo.java
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/java/npanday/plugin/aspnet/ProcessWebConfigMojo.java?rev=1227949&r1=1227948&r2=1227949&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/java/npanday/plugin/aspnet/ProcessWebConfigMojo.java (original)
+++ incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/java/npanday/plugin/aspnet/ProcessWebConfigMojo.java Fri Jan  6 03:33:43 2012
@@ -62,7 +62,7 @@ public class ProcessWebConfigMojo
     /**
      * @component
      */
-    protected ConfigFileHandler confiFileHandler;
+    protected ConfigFileHandler configFileHandler;
 
     public void execute() throws MojoExecutionException, MojoFailureException
     {
@@ -77,7 +77,7 @@ public class ProcessWebConfigMojo
             PathUtil.getPreparedPackageFolder( project ), "web.config"
         );
 
-        confiFileHandler.handleConfigFile( sourceConfigFile, targetConfigFile );
+        configFileHandler.handleConfigFile( sourceConfigFile, targetConfigFile );
     }