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 71a4c28 commit 942de35Copy full SHA for 942de35
src/main/java/io/spring/asciidoctor/backend/codetools/ListingContentConverters.java
@@ -54,7 +54,7 @@ public static RubyObject content(RubyObject node) {
54
content = (content != null) ? content : "";
55
content = converter.convert(listingBlock, content);
56
}
57
- return node.getRuntime().newString(content != null ? content : "");
+ return node.getRuntime().newString((content != null) ? content : "");
58
59
60
0 commit comments