Skip to content
This repository has been archived by the owner on Jul 8, 2019. It is now read-only.

Commit

Permalink
Removing logging code
Browse files Browse the repository at this point in the history
  • Loading branch information
Pablissimo committed Dec 28, 2016
1 parent c4ca424 commit 525b3de
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/test/java/com/pablissimo/sonar/LCOVParserImplTest.java
Expand Up @@ -132,13 +132,9 @@ private LCOVParser getParser(File lcovFile) {

private File resource(String testName) {
URL lcovUrl = LCOVParserImplTest.class.getClassLoader().getResource("./lcov/" + testName + ".lcov");
System.out.println(lcovUrl.getFile());

try {
File lcovFile = new File(lcovUrl.toURI());
System.out.println(lcovFile == null ? "couldn't turn it into a file" : "got a file!");

System.out.println("And it " + (lcovFile.exists() ? "exists!" : "doesn't exist"));
return lcovFile;
}
catch (URISyntaxException e) {
Expand Down

0 comments on commit 525b3de

Please sign in to comment.