Author: gertv
Date: Thu Nov 20 14:08:47 2008
New Revision: 719395
URL: http://svn.apache.org/viewvc?rev=719395&view=rev
Log:
Fixing a CheckStyle error
Modified:
activemq/camel/trunk/tooling/maven/guice-maven-plugin/src/main/java/org/apache/camel/guice/maven/DotMojo.java
Modified:
activemq/camel/trunk/tooling/maven/guice-maven-plugin/src/main/java/org/apache/camel/guice/maven/DotMojo.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/tooling/maven/guice-maven-plugin/src/main/java/org/apache/camel/guice/maven/DotMojo.java?rev=719395&r1=719394&r2=719395&view=diff
==============================================================================
---
activemq/camel/trunk/tooling/maven/guice-maven-plugin/src/main/java/org/apache/camel/guice/maven/DotMojo.java
(original)
+++
activemq/camel/trunk/tooling/maven/guice-maven-plugin/src/main/java/org/apache/camel/guice/maven/DotMojo.java
Thu Nov 20 14:08:47 2008
@@ -84,6 +84,14 @@
protected boolean runCamel;
/**
+ * Should we try run the DOT executable on the generated .DOT file to
+ * generate images
+ *
+ * @parameter expression="true"
+ */
+ protected boolean useDot;
+
+ /**
* The main class to execute.
*
* @parameter expression="${camel.mainClass}"
@@ -93,14 +101,6 @@
private String mainClass;
/**
- * Should we try run the DOT executable on the generated .DOT file to
- * generate images
- *
- * @parameter expression="true"
- */
- protected boolean useDot;
-
- /**
* Reference to Maven 2 Project.
*
* @parameter expression="${project}"
@@ -529,4 +529,4 @@
protected MavenProject getProject() {
return this.project;
}
-}
\ No newline at end of file
+}