From 58a65b60bd603f8392839407c012b8de7a5b74ee Mon Sep 17 00:00:00 2001 From: theli Date: Tue, 26 Apr 2005 06:59:36 +0000 Subject: [PATCH] *) synchronized keyword removed from function processLocalCrawling to avoid deadlocks. This synchronized keyword is not needed anymore because of the crawler jobqueue which is responsible for the synchronization now git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@60 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaSwitchboard.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/plasma/plasmaSwitchboard.java b/source/de/anomic/plasma/plasmaSwitchboard.java index ada1af810..bea233746 100644 --- a/source/de/anomic/plasma/plasmaSwitchboard.java +++ b/source/de/anomic/plasma/plasmaSwitchboard.java @@ -770,7 +770,7 @@ public class plasmaSwitchboard extends serverAbstractSwitch implements serverSwi } } - private synchronized void processLocalCrawling(plasmaCrawlNURL.entry urlEntry, plasmaCrawlProfile.entry profile, String initiator) { + private void processLocalCrawling(plasmaCrawlNURL.entry urlEntry, plasmaCrawlProfile.entry profile, String initiator) { // work off one Crawl stack entry if ((urlEntry == null) && (urlEntry.url() == null)) { log.logInfo("LOCALCRAWL[" + noticeURL.localStackSize() + ", " + noticeURL.remoteStackSize() + "]: urlEntry=null");