Skip to content

Commit

Permalink
style: Declare appendJsonObject static.
Browse files Browse the repository at this point in the history
Change-Id: I992c86866d1b8fd5212264a69c4d0845583a7db4
  • Loading branch information
benkard committed Jul 3, 2024
1 parent 992aa95 commit f555383
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ void json(StringBuilder b) {
b.append("}");
}

private void appendJsonObject(StringBuilder b, JsonValue value) {
private static void appendJsonObject(StringBuilder b, JsonValue value) {
switch (value.getValueType()) {
case ARRAY:
b.append("[");
Expand Down

0 comments on commit f555383

Please sign in to comment.