soapui
soapui copied to clipboard
Quality: S1130 "throws" declarations should not be superfluous
Using our java code remediation solution, we detected that the project's source code contained 57 violations of the Sonar rule S1130 "throws" declarations should not be superfluous". Below is an example of how our Indepth solution could fix the problem (https://www.indepth.fr/) For your information, using Indepth is free for all Opensource projects.
com\eviware\soapui\support\jnlp\WebstartUtil.java
@@ -40,5 +40,5 @@
}
- private static void extract(JarFile jar, String dir) throws IOException, FileNotFoundException {
+ private static void extract(JarFile jar, String dir) throws IOException {
makeDirectories(jar, dir);
extractFiles(jar, dir);