Skip to content

Commit

Permalink
[Java] Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjpt777 committed Feb 22, 2024
1 parent a146c56 commit 104d79d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -4568,7 +4568,7 @@ private int writeTokenDisplay(
{
final String typeName = formatClassName(decoderName(typeToken.applicableTypeName()));
append(sb, indent, "final " + typeName + " " + fieldName + " = this." + fieldName + "();");
append(sb, indent, "if (" + fieldName + " != null)");
append(sb, indent, "if (null != " + fieldName + ")");
append(sb, indent, "{");
append(sb, indent, " " + fieldName + ".appendTo(builder);");
append(sb, indent, "}");
Expand Down

0 comments on commit 104d79d

Please sign in to comment.