mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -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")) {
|
if (Objects.equals(type, "java.lang.String")) {
|
||||||
getStringRepresentation().thenVoid(str -> node.setPresentation(icon, type, str, true));
|
getStringRepresentation().thenVoid(str -> node.setPresentation(icon, type, str, true));
|
||||||
} else {
|
} 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