Skip to content

Commit 47ac7b4

Browse files
committed
fix android test failures related to trailing commas (causing parsing errors)
1 parent f09188e commit 47ac7b4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/vanilla/src/main/resources/org/everit/json/schema/issues/issue480/schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"oneOf": [
33
{"required": ["union-query"]},
44
{"required": ["sql-string"]},
5-
{"required": ["rest-url"]},
5+
{"required": ["rest-url"]}
66
],
77
"type": "object",
88
"additionalProperties": false,
99
"properties": {
1010
"union-query": {"type": "string"},
1111
"rest-url": {"type": "string"},
12-
"sql-string": {"type": "string"},
12+
"sql-string": {"type": "string"}
1313
}
1414
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"union-query": "xyz",
3-
"sql-string": "xyz",
3+
"sql-string": "xyz"
44
}

0 commit comments

Comments
 (0)