Skip to content

Commit

Permalink
Remove debugging message.
Browse files Browse the repository at this point in the history
  • Loading branch information
arthepsy committed Nov 4, 2014
1 parent a2e0533 commit da290f4
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
*/
package org.sonar.plugins.scala.sensor;

import java.io.IOException;
import java.util.List;

import org.apache.commons.io.FileUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand All @@ -47,6 +44,9 @@
import org.sonar.plugins.scala.util.MetricDistribution;
import org.sonar.plugins.scala.util.StringUtils;

import java.io.IOException;
import java.util.List;

/**
* This is the main sensor of the Scala plugin. It gathers all results
* of the computation of base metrics for all Scala resources.
Expand Down Expand Up @@ -94,8 +94,6 @@ public void analyse(Project project, SensorContext sensorContext) {

if (complexityOfFunctions != null)
sensorContext.saveMeasure(complexityOfFunctions.getMeasure());

LOGGER.debug("### done scala analyse");
}

private void addLineMetrics(SensorContext sensorContext, InputFile scalaFile, LinesAnalyzer linesAnalyzer) {
Expand Down

0 comments on commit da290f4

Please sign in to comment.