From 82f57f79e55e2f873db2b4820be21fd567f43b4b Mon Sep 17 00:00:00 2001 From: orbiter Date: Wed, 13 Jan 2010 00:23:07 +0000 Subject: more PMD enhancements git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6576 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/processing/domaingraph/applet/domaingraph.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'htroot/processing') diff --git a/htroot/processing/domaingraph/applet/domaingraph.java b/htroot/processing/domaingraph/applet/domaingraph.java index cf67db7bb..50a27df77 100755 --- a/htroot/processing/domaingraph/applet/domaingraph.java +++ b/htroot/processing/domaingraph/applet/domaingraph.java @@ -192,7 +192,7 @@ public HashMap parseProps(String s) { int p; String z; for (int i = 0; i < l.length; i++) { - p = l[i].indexOf("="); + p = l[i].indexOf('='); if (p > 0) { z = l[i].substring(p + 1).trim(); if (z.length() > 0 && z.charAt(0) == '"') z = z.substring(1); -- cgit v1.2.3