Fix bug in CommaSeparatedStringBuilder

This commit is contained in:
Grahame Grieve 2023-03-01 21:48:43 +11:00
parent e9fbf47d37
commit abba72d099
1 changed files with 1 additions and 0 deletions

View File

@ -72,6 +72,7 @@ public class CommaSeparatedStringBuilder {
} }
} }
b.append(pending); b.append(pending);
pending = null;
first = false; first = false;
} }
} }