replaced isEmpty() with equals("")

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4367 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
apfelmaennchen 17 years ago
parent d372a78aef
commit d288987a93

@ -358,7 +358,7 @@ public class Bookmarks {
tag=(Tag) it.next();
if (tag.getFriendlyName().startsWith("/")) {
path = tag.getFriendlyName();
while(!path.isEmpty()){
while(!path.equals("")){
folders.add(path);
path = path.replaceAll("(/.[^/]*$)", "");
serverLog.logInfo("BOOKMARKS", "Path: "+path+" added to folder list.\n");

Loading…
Cancel
Save