diff options
| author | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2010-01-13 00:23:07 +0000 |
|---|---|---|
| committer | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2010-01-13 00:23:07 +0000 |
| commit | 82f57f79e55e2f873db2b4820be21fd567f43b4b (patch) | |
| tree | a18362bb8f09bcad97086ad236255b33f8d67c41 /htroot/processing | |
| parent | 5d930c96f035518608be738f7823280213226188 (diff) | |
more PMD enhancements
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6576 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/processing')
| -rwxr-xr-x | htroot/processing/domaingraph/applet/domaingraph.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
