We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d77fac commit 38a4de4Copy full SHA for 38a4de4
1 file changed
src/main/java/jadx/plugins/stringdecoder/B64DictionaryFilter.java
@@ -1,6 +1,7 @@
1
package jadx.plugins.stringdecoder;
2
3
import java.io.BufferedReader;
4
+import java.io.IOException;
5
import java.io.InputStream;
6
import java.io.InputStreamReader;
7
import java.nio.charset.StandardCharsets;
@@ -38,7 +39,7 @@ private static Set<String> loadWords() {
38
39
}
40
41
- } catch (java.io.IOException ignored) {
42
+ } catch (IOException ignored) {
43
44
return words;
45
0 commit comments