aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorDavid Gageot <david@gageot.net>2012-07-16 08:59:34 +0200
committerDavid Gageot <david@gageot.net>2012-07-16 08:59:34 +0200
commit609f02fb8b2cc66729eead47d1fe070f6ff8b6ed (patch)
tree040e7ac4845796b70b0b8d9fd38f7e693fd2ac75 /sonar-plugin-api
parent6e904433517be27b849f302730e80b38bf3e0b5a (diff)
downloadsonarqube-609f02fb8b2cc66729eead47d1fe070f6ff8b6ed.tar.gz
sonarqube-609f02fb8b2cc66729eead47d1fe070f6ff8b6ed.zip
remove dead code
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/test/java/org/sonar/api/utils/UriReaderTest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/test/java/org/sonar/api/utils/UriReaderTest.java b/sonar-plugin-api/src/test/java/org/sonar/api/utils/UriReaderTest.java
index c37a635d568..b33e77ccd15 100644
--- a/sonar-plugin-api/src/test/java/org/sonar/api/utils/UriReaderTest.java
+++ b/sonar-plugin-api/src/test/java/org/sonar/api/utils/UriReaderTest.java
@@ -26,7 +26,6 @@ import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
-import java.io.FileNotFoundException;
import java.io.InputStream;
import java.net.URI;
import java.net.URISyntaxException;
@@ -48,7 +47,7 @@ public class UriReaderTest {
}
@Test
- public void file_processor_is_always_available() throws URISyntaxException {
+ public void file_processor_is_always_available() {
UriReader uriReader = new UriReader(new UriReader.SchemeProcessor[0]);
assertThat(uriReader.searchForSupportedProcessor(testFile)).isNotNull();