git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3128 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 18 years ago
parent b83068d8b6
commit a4e90bc1dc

@ -141,7 +141,8 @@ public class plasmaSearchRankingProfile {
e = elts[i].trim(); e = elts[i].trim();
if ((s == 0) || (e.startsWith(prefix))) { if ((s == 0) || (e.startsWith(prefix))) {
p = e.indexOf("="); p = e.indexOf("=");
if (e.length() > p + 1) coeff.put(e.substring(s, p), new Integer(Integer.parseInt(e.substring(p + 1)))); if (p < 0) System.out.println("DEBUG: bug in plasmaSearchRankingProfile: e = " + e);
if ((p > 0) && (e.length() > p + 1)) coeff.put(e.substring(s, p), new Integer(Integer.parseInt(e.substring(p + 1))));
} }
} }
coeff_domlength = parseMap(coeff, DOMLENGTH, coeff_domlength); coeff_domlength = parseMap(coeff, DOMLENGTH, coeff_domlength);

Loading…
Cancel
Save