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 f90bd23 commit 0cabdc6Copy full SHA for 0cabdc6
src/main/java/Avalara/SDK/ApiClient.java
@@ -636,7 +636,7 @@ public String parameterToString(Object param) {
636
if (param instanceof Collection) {
637
StringBuilder b = new StringBuilder();
638
for (Object o : (Collection<?>) param) {
639
- if (!b.isEmpty()) {
+ if (b.length() > 0) {
640
b.append(",");
641
}
642
b.append(parameterToString(o));
0 commit comments