File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/main/java/io/frictionlessdata/tableschema/tabledatasource Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ so show me the goods.
4343
4444Found a problem and would like to fix it? Have that great idea and would love to see it in the repository?
4545
46+ > [ !NOTE]
4647> Please open an issue before you start working.
4748
4849It saves a lot of time for everyone, and we are super happy to answer questions and help you along the way.
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ public Iterator<String[]> iterator() {
8181 values .add (val .asText ("" ));
8282 }
8383 } else if (input instanceof ArrayNode ) {
84- Iterator <JsonNode > elements = (( ArrayNode ) input ) .elements ();
84+ Iterator <JsonNode > elements = input .elements ();
8585 while (elements .hasNext ()) {
8686 values .add (elements .next ().asText ("" ));
8787 }
You can’t perform that action at this time.
0 commit comments