Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,8 @@

private final Map<CacheKey, HashCode> cache;

@SuppressWarnings("serial")
public HasherImpl(int cacheSize) {
this.cache = new LinkedHashMap<>() {

Check warning on line 132 in org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/sourcelookup/advanced/FileHashing.java

View check run for this annotation

Jenkins - Eclipse JDT / Compiler

Potential Programming Problem

NORMAL: The serializable class does not declare a static final serialVersionUID field of type long
@Override
protected boolean removeEldestEntry(Map.Entry<CacheKey, HashCode> eldest) {
return size() > cacheSize;
Expand Down
Loading