Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 83628 invoked from network); 12 May 2007 09:04:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 May 2007 09:04:28 -0000 Received: (qmail 9472 invoked by uid 500); 12 May 2007 09:04:34 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 9433 invoked by uid 500); 12 May 2007 09:04:34 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 9422 invoked by uid 99); 12 May 2007 09:04:34 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 12 May 2007 02:04:34 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 12 May 2007 02:04:27 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id A975A1A9838; Sat, 12 May 2007 02:04:07 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r537364 - /directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/authz/support/MaxImmSubFilterTest.java Date: Sat, 12 May 2007 09:04:07 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070512090407.A975A1A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Sat May 12 02:04:06 2007 New Revision: 537364 URL: http://svn.apache.org/viewvc?view=rev&rev=537364 Log: Added a throws NamingException to avoid a compilation error Modified: directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/authz/support/MaxImmSubFilterTest.java Modified: directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/authz/support/MaxImmSubFilterTest.java URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/authz/support/MaxImmSubFilterTest.java?view=diff&rev=537364&r1=537363&r2=537364 ============================================================================== --- directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/authz/support/MaxImmSubFilterTest.java (original) +++ directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/authz/support/MaxImmSubFilterTest.java Sat May 12 02:04:06 2007 @@ -154,7 +154,7 @@ final int count; - public MockProxy(int count) + public MockProxy(int count) throws NamingException { super( new DeadContext(), new MockDirectoryService() ); this.count = count;