We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3e0de1 commit 8a600afCopy full SHA for 8a600af
plugins/kotlin/src/main/java/org/vineflower/kotlin/KotlinChooser.java
@@ -43,6 +43,8 @@ public boolean isLanguage(StructClass cl) {
43
StructAnnotationAttribute attr = cl.getAttribute((Key<StructAnnotationAttribute>) key);
44
for (AnnotationExprent anno : attr.getAnnotations()) {
45
if (anno.getClassName().equals("kotlin/Metadata")) {
46
+ // Line removed as it slows down decompilation significantly, and it doesn't seem to break anything
47
+ //TODO double-check if it breaks anything
48
// setContextVariables(cl);
49
return true;
50
}
0 commit comments