Skip to content

Commit

Permalink
Add missing comma in PO
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbattle committed Dec 1, 2023
1 parent a8d65ee commit 0d6daac
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,14 @@ private String getLHS(PODefinition def)

if (edef.typeParams != null)
{
String sep = "";
sb.append("[");

for (TCType type: edef.typeParams)
{
sb.append(sep);
sb.append(type);
sep = ", ";
}

sb.append("]");
Expand Down

0 comments on commit 0d6daac

Please sign in to comment.