We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Skip over the instructions found via this method so the single chars don't get printed
Kitsune/src/main/java/optic_fusion1/kitsune/tool/impl/StringsTool.java
Line 214 in 2ca6749
private void handleMethod(ClassNode classNode, MethodNode methodNode) { List<String> strings = new ArrayList<>(); for (AbstractInsnNode instruction : methodNode.instructions) { String string = ""; if (instruction instanceof LdcInsnNode ldcInsnNode && ldcInsnNode.cst instanceof String) { string = (String) ldcInsnNode.cst; } else { // TODO: Skip over the instructions found via this method so the single chars don't get printed if (instruction.getOpcode() == Opcodes.BIPUSH) { IntInsnNode intInsnNode = (IntInsnNode) instruction; string = readStringArray(intInsnNode); if (string.isBlank()) { continue; } } } if (string.isBlank()) { continue; } // TODO: Add decoding Base64 support.
bcae6d26bda3fd434b0eba6c949e51175be1971c
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Skip over the instructions found via this method so the single chars don't get printed
Kitsune/src/main/java/optic_fusion1/kitsune/tool/impl/StringsTool.java
Line 214 in 2ca6749
bcae6d26bda3fd434b0eba6c949e51175be1971c
The text was updated successfully, but these errors were encountered: