From c2965a02ab542e3d29c43c50adaf7b320d543390 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 30 Dec 2020 21:39:28 +0100 Subject: [PATCH] Fix nullable Label renderer --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ef2462c..c44912c 100644 --- a/README.md +++ b/README.md @@ -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()) ```