Fix nullable Label renderer

This commit is contained in:
Gabriel Tofvesson 2020-12-30 21:39:28 +01:00
parent b6febe5e3e
commit c2965a02ab

View File

@ -71,7 +71,7 @@ String.format("%s 0x%s", java.util.Arrays.stream(jdk.internal.org.objectweb.asm.
### Render
```java
String.format("JUMP LABEL %s", label.toString())
String.format("LABEL %s", label == null ? "" : label.toString())
```