mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-13 03:45:19 +00:00
8046271: Fix overrides lint warnings in Apple laf code
Reviewed-by: alanb, prr
This commit is contained in:
parent
dc20ecddcf
commit
f06c5555b0
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user