We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd2593b commit fddfa8bCopy full SHA for fddfa8b
1 file changed
build.gradle
@@ -1,4 +1,5 @@
1
import org.apache.tools.ant.util.TeeOutputStream
2
+boolean debug = false
3
4
class Tags {
5
Boolean mainMethod = false
@@ -124,7 +125,7 @@ subprojects {
124
125
if (it.name.endsWith('.java')) {
126
127
Tags tags = new Tags(it.readLines())
- // if(tags.hasTags()) println tags // Trace output for debugging
128
+ if(debug && tags.hasTags()) println tags
129
130
// Add tasks for java sources with main methods
131
if ((tags.mainMethod || tags.javaCmd) && (!tags.compileTimeError)) {
0 commit comments