mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-07-18 21:47:18 +00:00
Fix for HER-1950 URIAuthorityBasedQueueAssignmentPolicy KeyedProperties shadows superclass QueueAssignmentPolicy KeyedProperties, breaking sheet overlay of properties defined in superclass
* URIAuthorityBasedQueueAssignmentPolicy.java
remove field kp, accessor getKeyedProperties(); instead inherit these from superclass QueueAssignmentPolicy
This commit is contained in:
-5
@@ -23,7 +23,6 @@ import org.apache.commons.lang.StringUtils;
|
||||
import org.archive.modules.CrawlURI;
|
||||
import org.archive.net.UURI;
|
||||
import org.archive.spring.HasKeyedProperties;
|
||||
import org.archive.spring.KeyedProperties;
|
||||
import org.archive.util.LongToIntConsistentHash;
|
||||
|
||||
/**
|
||||
@@ -36,10 +35,6 @@ implements
|
||||
HasKeyedProperties {
|
||||
private static final long serialVersionUID = 3L;
|
||||
|
||||
KeyedProperties kp = new KeyedProperties();
|
||||
public KeyedProperties getKeyedProperties() {
|
||||
return kp;
|
||||
}
|
||||
//for when neat class-key fails us
|
||||
protected static String DEFAULT_CLASS_KEY = "default...";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user