Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quality: S1130 "throws" declarations should not be superfluous #801

Open
jlerbsc opened this issue Mar 9, 2024 · 0 comments
Open

Quality: S1130 "throws" declarations should not be superfluous #801

jlerbsc opened this issue Mar 9, 2024 · 0 comments

Comments

@jlerbsc
Copy link

jlerbsc commented Mar 9, 2024

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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant