8263514: Minor issue in JavacFileManager.SortFiles.REVERSE
Reviewed-by: vromero
This commit is contained in:
parent
771b146aeb
commit
5ab5244814
@ -123,7 +123,7 @@ public class JavacFileManager extends BaseFileManager implements StandardJavaFil
|
|||||||
REVERSE {
|
REVERSE {
|
||||||
@Override
|
@Override
|
||||||
public int compare(Path f1, Path f2) {
|
public int compare(Path f1, Path f2) {
|
||||||
return -f1.getFileName().compareTo(f2.getFileName());
|
return f2.getFileName().compareTo(f1.getFileName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user