Skip to content

Commit

Permalink
Removed unneeded console println
Browse files Browse the repository at this point in the history
  • Loading branch information
jsight committed Apr 20, 2016
1 parent 4225f71 commit 36a5871
Showing 1 changed file with 0 additions and 7 deletions.
Expand Up @@ -317,13 +317,6 @@ private void printProgressEstimate(GraphRewrite event, ProgressEstimate estimate

private List<ClassReference> filterClassReferences(String filename, List<ClassReference> references, boolean classNotFoundAnalysisEnabled)
{
if (references.size() > 0 && filename.contains("CacheServiceProvider.java"))
{
for (ClassReference model : references)
{
System.out.println("1Reference: " + model.getLineNumber() + ": " + model.getLocation() + ", " + model.getQualifiedName());
}
}
List<ClassReference> results = new ArrayList<>(references.size());
for (ClassReference reference : references)
{
Expand Down

0 comments on commit 36a5871

Please sign in to comment.