Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mmay committed Jul 5, 2011
1 parent 92a15a8 commit eb68f1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JsonLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public Tuple getNext() throws IOException {
return null;
}

protected Tuple parseStringToTuple(String line) {
protected Tuple parseStringToTuple(String line) {
try {
Map<String, Object> values = new HashMap<String, Object>();
JsonNode node = mapper.readTree(line);
Expand Down Expand Up @@ -165,7 +165,7 @@ private void flatten_array(JsonNode value, DataBag bag) {
bag.add( tupleFactory.newTuple(value));
}
}
}
}

@SuppressWarnings("unchecked")
@Override
Expand Down

0 comments on commit eb68f1c

Please sign in to comment.