File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
core/src/main/java/org/everit/json/schema
tests/src/test/java/org/everit/json/schema Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ private void testAdditionalProperties(final JSONObject subject) {
256
256
257
257
private Stream <String > getAdditionalProperties (final JSONObject subject ) {
258
258
String [] names = JSONObject .getNames (subject );
259
- if (names == null ) {
259
+ if (names == null ) {
260
260
return Stream .empty ();
261
261
} else {
262
262
return Arrays
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (C) 2011 Everit Kft. (http://www.everit.org)
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
package org .everit .json .schema ;
2
17
3
18
import org .everit .json .schema .loader .SchemaLoader ;
You can’t perform that action at this time.
0 commit comments