mirror of
https://github.com/konsoletyper/teavm.git
synced 2025-02-05 10:59:40 +08:00
Fix compilation of IDEA plugin
This commit is contained in:
parent
9bdec1fdb2
commit
b60d57ea73
@ -50,7 +50,10 @@ public class TeaVMValue extends XNamedValue {
|
||||
if (Objects.equals(type, "java.lang.String")) {
|
||||
getStringRepresentation().thenVoid(str -> node.setPresentation(icon, type, str, true));
|
||||
} else {
|
||||
node.setPresentation(icon, type, representation, innerValue.hasInnerStructure());
|
||||
innerValue.hasInnerStructure().then(innerStructure -> {
|
||||
node.setPresentation(icon, type, representation, innerStructure);
|
||||
return null;
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user