This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8263514: Minor issue in JavacFileManager.SortFiles.REVERSE
Reviewed-by: vromero
- Loading branch information
Showing
with
1 addition
and 1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -123,7 +123,7 @@ public int compare(Path f1, Path f2) { | ||
REVERSE { | ||
@Override | ||
public int compare(Path f1, Path f2) { | ||
return f2.getFileName().compareTo(f1.getFileName()); | ||
} | ||
} | ||
} | ||