Skip to content

Commit

Permalink
fix for re-enable parser
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6643 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
lotus committed Feb 3, 2010
1 parent 8a76f38 commit 85ca962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/net/yacy/document/TextParser.java
Expand Up @@ -364,7 +364,7 @@ public static void setDenyMime(String denyList) {
public static String getDenyMime() {
String s = "";
for (String d: denyMime) s += d + ",";
s = s.substring(0, s.length() - 1);
if (s.length() > 0) s = s.substring(0, s.length() - 1);
return s;
}

Expand Down

0 comments on commit 85ca962

Please sign in to comment.