8046271: Fix overrides lint warnings in Apple laf code

Reviewed-by: alanb, prr
This commit is contained in:
Joe Darcy 2014-06-09 16:24:47 -07:00
parent dc20ecddcf
commit f06c5555b0

View File

@ -366,6 +366,11 @@ class AquaFileSystemModel extends AbstractTableModel implements PropertyChangeLi
final SortableFile otherFile = (SortableFile)other;
return otherFile.fFile.equals(fFile);
}
@Override
public int hashCode() {
return Objects.hashCode(fFile);
}
}
class LoadFilesThread extends Thread {