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
V" is worth adding
Kitsune/src/main/java/optic_fusion1/kitsune/tool/impl/analyze/analyzer/java/code/SystemHookCodeAnalyzer.java
Line 10 in 2ca6749
package optic_fusion1.kitsune.tool.impl.analyze.analyzer.java.code; import static optic_fusion1.kitsune.util.Utils.log; import org.objectweb.asm.tree.ClassNode; import org.objectweb.asm.tree.MethodInsnNode; import org.objectweb.asm.tree.MethodNode; public class SystemHookCodeAnalyzer extends CodeAnalyzer { // TODO: See if "lc/kra/system/keyboard/GlobalKeyboardHook.shutdownHook()V" is worth adding @Override public void analyze(ClassNode classNode, MethodNode methodNode, MethodInsnNode methodInsnNode) { if (isMethodInsnNodeCorrect(methodInsnNode, "<init>", "(Z)V")) { log(classNode, methodNode, methodInsnNode, "Creates a new SystemHook GlobalKeyboardHook"); return; } if (isMethodInsnNodeCorrect(methodInsnNode, "addKeyListener", "(Llc/kra/system/keyboard/event/GlobalKeyListener;)V")) { log(classNode, methodNode, methodInsnNode, "Adds a new SystemHook KeyListener"); return; } } }
509d8e5f9ad788dd46ffd07a2f16606f64ef937a
The text was updated successfully, but these errors were encountered:
No branches or pull requests
V" is worth adding
Kitsune/src/main/java/optic_fusion1/kitsune/tool/impl/analyze/analyzer/java/code/SystemHookCodeAnalyzer.java
Line 10 in 2ca6749
509d8e5f9ad788dd46ffd07a2f16606f64ef937a
The text was updated successfully, but these errors were encountered: