Return-Path: Delivered-To: apmail-sling-commits-archive@www.apache.org Received: (qmail 59095 invoked from network); 11 Sep 2009 14:04:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 11 Sep 2009 14:04:34 -0000 Received: (qmail 66266 invoked by uid 500); 11 Sep 2009 14:04:34 -0000 Delivered-To: apmail-sling-commits-archive@sling.apache.org Received: (qmail 66212 invoked by uid 500); 11 Sep 2009 14:04:34 -0000 Mailing-List: contact commits-help@sling.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@sling.apache.org Delivered-To: mailing list commits@sling.apache.org Received: (qmail 66203 invoked by uid 99); 11 Sep 2009 14:04:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Sep 2009 14:04:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Sep 2009 14:04:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BEE95238897D; Fri, 11 Sep 2009 14:04:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r813836 - /sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/OsgiInstallerThread.java Date: Fri, 11 Sep 2009 14:04:09 -0000 To: commits@sling.apache.org From: bdelacretaz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090911140409.BEE95238897D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bdelacretaz Date: Fri Sep 11 14:04:09 2009 New Revision: 813836 URL: http://svn.apache.org/viewvc?rev=813836&view=rev Log: SLING-1078 - sync urlsToRemove call Modified: sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/OsgiInstallerThread.java Modified: sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/OsgiInstallerThread.java URL: http://svn.apache.org/viewvc/sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/OsgiInstallerThread.java?rev=813836&r1=813835&r2=813836&view=diff ============================================================================== --- sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/OsgiInstallerThread.java (original) +++ sling/trunk/installer/osgi/installer/src/main/java/org/apache/sling/osgi/installer/impl/OsgiInstallerThread.java Fri Sep 11 14:04:09 2009 @@ -146,9 +146,9 @@ if(ctx.getLogService() != null) { ctx.getLogService().log(LogService.LOG_DEBUG, "Adding URL " + r.getUrl() + " to urlsToRemove"); } - urlsToRemove.add(r.getUrl()); synchronized (newResources) { + urlsToRemove.add(r.getUrl()); newResources.notify(); } }