more generics

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4342 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 17 years ago
parent 45339c3db5
commit cbefc651ac

@ -87,9 +87,9 @@ public final class plasmaSearchEvent {
@SuppressWarnings("unchecked")
private plasmaSearchEvent(plasmaSearchQuery query,
plasmaWordIndex wordIndex,
plasmaWordIndex wordIndex,
TreeMap<String, String> preselectedPeerHashes,
boolean generateAbstracts) {
boolean generateAbstracts) {
this.eventTime = System.currentTimeMillis(); // for lifetime check
this.wordIndex = wordIndex;
this.query = query;

@ -254,7 +254,7 @@ public class yacySearch extends Thread {
plasmaURLPattern blacklist,
plasmaSearchRankingProfile rankingProfile,
kelondroBitfield constraint,
TreeMap clusterselection) {
TreeMap<String, String> clusterselection) {
// check own peer status
if (yacyCore.seedDB.mySeed() == null || yacyCore.seedDB.mySeed().getPublicAddress() == null) { return null; }
@ -278,7 +278,7 @@ public class yacySearch extends Thread {
plasmaSearchRankingProcess containerCache,
String targethash, plasmaURLPattern blacklist,
plasmaSearchRankingProfile rankingProfile,
kelondroBitfield constraint, TreeMap clusterselection) {
kelondroBitfield constraint, TreeMap<String, String> clusterselection) {
// check own peer status
if (yacyCore.seedDB.mySeed() == null || yacyCore.seedDB.mySeed().getPublicAddress() == null) { return null; }

Loading…
Cancel
Save