Skip to content

Commit

Permalink
fix brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Aug 23, 2013
1 parent a5b334e commit 1bac4e1
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -270,10 +270,11 @@ public String[] getOldColumnValues() {
List<String> names = retrieve(columnsBy, true);
List<String> values = new ArrayList<String>();
for( String name : names ) {
if( oldSourceValues.containsKey(name) )
if(oldSourceValues.containsKey(name)) {
values.add(oldSourceValues.get(name));
else
} else {
values.add(null);
}
}
return values.toArray(new String[values.size()]);
}
Expand Down

0 comments on commit 1bac4e1

Please sign in to comment.