checkstyle comments
This commit is contained in:
parent
b2c2605c57
commit
a5c1e3cd2e
|
@ -863,8 +863,10 @@ public class EntityGroupFSTimelineStore extends CompositeService
|
||||||
public int compare(FileStatus o1, FileStatus o2) {
|
public int compare(FileStatus o1, FileStatus o2) {
|
||||||
String[] ts1 = o1.getPath().getName().split("_");
|
String[] ts1 = o1.getPath().getName().split("_");
|
||||||
String[] ts2 = o2.getPath().getName().split("_");
|
String[] ts2 = o2.getPath().getName().split("_");
|
||||||
if (StringUtils.isNumeric(ts1[ts1.length - 1]) && StringUtils.isNumeric(ts2[ts2.length - 1])) {
|
if (StringUtils.isNumeric(ts1[ts1.length - 1])
|
||||||
return (Integer.parseInt(ts1[ts1.length - 1]) - Integer.parseInt(ts2[ts2.length - 1]));
|
&& StringUtils.isNumeric(ts2[ts2.length - 1])) {
|
||||||
|
return (Integer.parseInt(ts1[ts1.length - 1])
|
||||||
|
- Integer.parseInt(ts2[ts2.length - 1]));
|
||||||
} else {
|
} else {
|
||||||
return o1.getPath().getName().compareTo(o2.getPath().getName());
|
return o1.getPath().getName().compareTo(o2.getPath().getName());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue