You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/07/05 19:15:34 UTC

svn commit: r674213 - /myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-javacc-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/javacc/JavaCCMojo.java

Author: skitching
Date: Sat Jul  5 10:15:34 2008
New Revision: 674213

URL: http://svn.apache.org/viewvc?rev=674213&view=rev
Log:
Code style fixes only

Modified:
    myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-javacc-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/javacc/JavaCCMojo.java

Modified: myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-javacc-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/javacc/JavaCCMojo.java
URL: http://svn.apache.org/viewvc/myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-javacc-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/javacc/JavaCCMojo.java?rev=674213&r1=674212&r2=674213&view=diff
==============================================================================
--- myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-javacc-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/javacc/JavaCCMojo.java (original)
+++ myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-javacc-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/javacc/JavaCCMojo.java Sat Jul  5 10:15:34 2008
@@ -257,7 +257,8 @@
         org.javacc.parser.Main.mainProgram(generateJavaCCArgumentList(javaccFile.getAbsolutePath()));
 
         FileUtils.copyFileToDirectory(javaccFile, timestampDirectory);
-        if (doNotGenerateTokenFile == true) {
+        if (doNotGenerateTokenFile == true)
+        {
           File tokenFile  = new File(outDir, "Token.java");
           FileUtils.forceDelete(tokenFile);
         }