summaryrefslogtreecommitdiff
path: root/htroot/processing/domaingraph
diff options
context:
space:
mode:
authorMichael Peter Christen <mc@yacy.net>2015-01-29 02:28:03 +0100
committerMichael Peter Christen <mc@yacy.net>2015-01-29 02:28:03 +0100
commit68c605d637ca1bcb50c26aed6117a724e1ecc017 (patch)
tree4c8e897a6835f69c00bb82aba1705e66c6787ddb /htroot/processing/domaingraph
parentde3e373913de724af0a9a794379d792c1a245b78 (diff)
replace with CommonPattern.SPACE for split
Diffstat (limited to 'htroot/processing/domaingraph')
-rw-r--r--htroot/processing/domaingraph/applet/domaingraph.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/htroot/processing/domaingraph/applet/domaingraph.java b/htroot/processing/domaingraph/applet/domaingraph.java
index 1e04d0b4f..d031d2a9d 100644
--- a/htroot/processing/domaingraph/applet/domaingraph.java
+++ b/htroot/processing/domaingraph/applet/domaingraph.java
@@ -187,7 +187,7 @@ public void processCitation(String host, HashMap props) {
}
public HashMap parseProps(String s) {
- String[] l = s.split(" ");
+ String[] l = CommonPattern.SPACE.split(s);
HashMap map = new HashMap();
int p;
String z;