fix for token parser

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7382 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 14 years ago
parent 58b59f9bc8
commit 0ac7311a62

@ -843,7 +843,7 @@ public class MultiProtocolURI implements Serializable, Comparable<MultiProtocolU
private static CharType charType(char c) {
if (c >= 'a' && c <= 'z') return CharType.low;
if (c >= '0' && c <= '1') return CharType.number;
if (c >= '0' && c <= '9') return CharType.number;
return CharType.high;
}

Loading…
Cancel
Save