Remove redundant abstract modifier

This commit is contained in:
Ville Skyttä 2015-08-16 15:31:35 +03:00
parent eb407389a6
commit 9be47ad145
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public class SoftValueHashMap<K, V extends SoftValueHashMap.ValueCache> implemen
// Static -------------------------------------------------------- // Static --------------------------------------------------------
public abstract interface ValueCache { public interface ValueCache {
boolean isLive(); boolean isLive();
} }