Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 60152 invoked from network); 21 Sep 2007 13:07:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Sep 2007 13:07:43 -0000 Received: (qmail 25750 invoked by uid 500); 21 Sep 2007 13:07:34 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 25724 invoked by uid 500); 21 Sep 2007 13:07:34 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 25715 invoked by uid 99); 21 Sep 2007 13:07:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Sep 2007 06:07:34 -0700 X-ASF-Spam-Status: No, hits=-98.0 required=10.0 tests=ALL_TRUSTED,URIBL_BLACK 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; Fri, 21 Sep 2007 13:07:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9762D1A983A; Fri, 21 Sep 2007 06:07:15 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r578094 - in /harmony/enhanced/classlib/trunk/modules: auth/src/test/java/common/org/apache/harmony/auth/tests/module/KeyStoreLoginModuleTest.java sound/src/test/java/org/apache/harmony/sound/tests/javax/sound/sampled/PortInfoTest.java Date: Fri, 21 Sep 2007 13:07:15 -0000 To: commits@harmony.apache.org From: tellison@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070921130715.9762D1A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tellison Date: Fri Sep 21 06:07:14 2007 New Revision: 578094 URL: http://svn.apache.org/viewvc?rev=578094&view=rev Log: Fix minor compiler warnings. Modified: harmony/enhanced/classlib/trunk/modules/auth/src/test/java/common/org/apache/harmony/auth/tests/module/KeyStoreLoginModuleTest.java harmony/enhanced/classlib/trunk/modules/sound/src/test/java/org/apache/harmony/sound/tests/javax/sound/sampled/PortInfoTest.java Modified: harmony/enhanced/classlib/trunk/modules/auth/src/test/java/common/org/apache/harmony/auth/tests/module/KeyStoreLoginModuleTest.java URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/auth/src/test/java/common/org/apache/harmony/auth/tests/module/KeyStoreLoginModuleTest.java?rev=578094&r1=578093&r2=578094&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/modules/auth/src/test/java/common/org/apache/harmony/auth/tests/module/KeyStoreLoginModuleTest.java (original) +++ harmony/enhanced/classlib/trunk/modules/auth/src/test/java/common/org/apache/harmony/auth/tests/module/KeyStoreLoginModuleTest.java Fri Sep 21 06:07:14 2007 @@ -96,10 +96,10 @@ } Set principals = subject.getPrincipals(); assertFalse("Should get at least one principal", principals.isEmpty()); - Set subjects = subject.getPrivateCredentials(); + Set subjects = subject.getPrivateCredentials(); assertFalse("Should get at least one private credential", subjects .isEmpty()); - Set subjects2 = subject.getPublicCredentials(); + Set subjects2 = subject.getPublicCredentials(); assertFalse("Should get at least one public credential", subjects2 .isEmpty()); subject = new Subject(); @@ -164,10 +164,10 @@ } Set principals = subject.getPrincipals(); assertFalse("Should get at least one principal", principals.isEmpty()); - Set subjects = subject.getPrivateCredentials(); + Set subjects = subject.getPrivateCredentials(); assertFalse("Should get at least one private credential", subjects .isEmpty()); - Set subjects2 = subject.getPublicCredentials(); + Set subjects2 = subject.getPublicCredentials(); assertFalse("Should get at least one public credential", subjects2 .isEmpty()); try { Modified: harmony/enhanced/classlib/trunk/modules/sound/src/test/java/org/apache/harmony/sound/tests/javax/sound/sampled/PortInfoTest.java URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/sound/src/test/java/org/apache/harmony/sound/tests/javax/sound/sampled/PortInfoTest.java?rev=578094&r1=578093&r2=578094&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/modules/sound/src/test/java/org/apache/harmony/sound/tests/javax/sound/sampled/PortInfoTest.java (original) +++ harmony/enhanced/classlib/trunk/modules/sound/src/test/java/org/apache/harmony/sound/tests/javax/sound/sampled/PortInfoTest.java Fri Sep 21 06:07:14 2007 @@ -27,7 +27,7 @@ assertEquals("COMPACT_DISC source port", Port.Info.COMPACT_DISC.toString()); assertEquals("LINE_OUT target port", Port.Info.LINE_OUT.toString()); - Class cl = Port.class; + Class cl = Port.class; String name = "name"; Port.Info pi1 = new Port.Info(cl, name, true); assertEquals(name, pi1.getName());