Author: jocaba
Date: Wed Nov  3 03:09:45 2010
New Revision: 1030319

URL: http://svn.apache.org/viewvc?rev=1030319&view=rev
Log:
[NPANDAY-343] Can't successfully build projects (VS 2005 and VS 2008) - Build 
Error due to Access is denied

Removed the part of the code that tried to log the responsefile directly to C:

Modified:
    
incubator/npanday/trunk/components/dotnet-executable/src/main/java/npanday/executable/compiler/impl/DefaultCompiler.java

Modified: 
incubator/npanday/trunk/components/dotnet-executable/src/main/java/npanday/executable/compiler/impl/DefaultCompiler.java
URL: 
http://svn.apache.org/viewvc/incubator/npanday/trunk/components/dotnet-executable/src/main/java/npanday/executable/compiler/impl/DefaultCompiler.java?rev=1030319&r1=1030318&r2=1030319&view=diff
==============================================================================
--- 
incubator/npanday/trunk/components/dotnet-executable/src/main/java/npanday/executable/compiler/impl/DefaultCompiler.java
 (original)
+++ 
incubator/npanday/trunk/components/dotnet-executable/src/main/java/npanday/executable/compiler/impl/DefaultCompiler.java
 Wed Nov  3 03:09:45 2010
@@ -293,15 +293,6 @@ public final class DefaultCompiler
         filteredCommands.clear();
         filteredCommands.add("@" + escapeCmdParams(responseFilePath) );
         
-        try
-        {
-             FileUtils.copyFile(new File(responseFilePath),new File( 
"c:/responsefile.txt"));
-        }
-        catch (java.io.IOException e) {
-               throw new ExecutionException( "Error while creating response 
file for the commands.", e );
-        }
-       
-        
         return filteredCommands;
     }
 


Reply via email to