You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2019/06/16 23:46:41 UTC

[lucene-solr] branch jira/SOLR-13452_gradle_4 updated: SOLR-13452: Clean up debug code.

This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch jira/SOLR-13452_gradle_4
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/jira/SOLR-13452_gradle_4 by this push:
     new 2086657  SOLR-13452: Clean up debug code.
2086657 is described below

commit 2086657ebbddbb60a7881440c5ce2c2016609dfd
Author: markrmiller <ma...@apache.org>
AuthorDate: Sun Jun 16 18:46:34 2019 -0500

    SOLR-13452: Clean up debug code.
---
 buildSrc/src/main/groovy/org/apache/lucene/gradle/MissingDeps.groovy | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/buildSrc/src/main/groovy/org/apache/lucene/gradle/MissingDeps.groovy b/buildSrc/src/main/groovy/org/apache/lucene/gradle/MissingDeps.groovy
index 36d7410..ae73aa4 100644
--- a/buildSrc/src/main/groovy/org/apache/lucene/gradle/MissingDeps.groovy
+++ b/buildSrc/src/main/groovy/org/apache/lucene/gradle/MissingDeps.groovy
@@ -119,10 +119,8 @@ class MissingDeps extends DefaultTask {
               
               for (String foundInClassExclude : foundInClassExcludes) {
                 Matcher m2 = Pattern.compile(foundInClassExclude).matcher(classFoundInName)
-                //println "${className} against ${classExclude}"
                 if (m2.matches()) {
                   excluded = true
-                  //println 'excluded'
                   break
                 }
               }
@@ -130,10 +128,8 @@ class MissingDeps extends DefaultTask {
               className = m.group(2)
               for (String classExclude : classExcludes) {
                 Matcher m2 = Pattern.compile(classExclude).matcher(className)
-                //println "${className} against ${classExclude}"
                 if (m2.matches()) {
                   excluded = true
-                  //println 'excluded'
                   break
                 }
               }