@Override annotations. No functional changes.
git-svn-id: http://google-refine.googlecode.com/svn/trunk@2092 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
parent
297809847d
commit
2cd3ae03d0
@ -92,6 +92,7 @@ public class Column implements Jsonizable {
|
||||
return _reconStats;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void write(JSONWriter writer, Properties options)
|
||||
throws JSONException {
|
||||
|
||||
@ -154,6 +155,7 @@ public class Column implements Jsonizable {
|
||||
return column;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return _name;
|
||||
}
|
||||
|
@ -156,6 +156,7 @@ public class ColumnModel implements Jsonizable {
|
||||
return _columnNames;
|
||||
}
|
||||
|
||||
@Override
|
||||
synchronized public void write(JSONWriter writer, Properties options)
|
||||
throws JSONException {
|
||||
|
||||
@ -236,6 +237,7 @@ public class ColumnModel implements Jsonizable {
|
||||
|
||||
_rootColumnGroups = new LinkedList<ColumnGroup>(columnGroups);
|
||||
Collections.sort(_rootColumnGroups, new Comparator<ColumnGroup>() {
|
||||
@Override
|
||||
public int compare(ColumnGroup o1, ColumnGroup o2) {
|
||||
int firstDiff = o1.startColumnIndex - o2.startColumnIndex;
|
||||
return firstDiff != 0 ?
|
||||
|
Loading…
Reference in New Issue
Block a user