Skip to content

Commit 942de35

Browse files
committed
Fix checkstyle
1 parent 71a4c28 commit 942de35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/spring/asciidoctor/backend/codetools/ListingContentConverters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static RubyObject content(RubyObject node) {
5454
content = (content != null) ? content : "";
5555
content = converter.convert(listingBlock, content);
5656
}
57-
return node.getRuntime().newString(content != null ? content : "");
57+
return node.getRuntime().newString((content != null) ? content : "");
5858
}
5959

6060
}

0 commit comments

Comments
 (0)