gh-pages
MarcoIeni 1 year ago
parent 3c29b7a1be
commit 79dbd57305

@ -212,7 +212,9 @@ impl Formatter for Json {
buf.push_str(&entry);
buf.push(',');
}
buf.pop(); // remove extra , at the end
if !data.is_empty() {
buf.pop(); // remove extra , at the end
}
buf.push(']');
}
}

@ -2065,7 +2065,9 @@ impl Formatter for Json {
buf.push_str(&entry);
buf.push(',');
}
buf.pop(); // remove extra , at the end
if !data.is_empty() {
buf.pop(); // remove extra , at the end
}
buf.push(']');
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save