Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 47056 invoked from network); 31 May 2006 14:35:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 31 May 2006 14:35:50 -0000 Received: (qmail 17492 invoked by uid 500); 31 May 2006 14:35:50 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 17454 invoked by uid 500); 31 May 2006 14:35:50 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 17439 invoked by uid 99); 31 May 2006 14:35:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 31 May 2006 07:35:50 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 31 May 2006 07:35:49 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 72AD31A983A; Wed, 31 May 2006 07:35:29 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r410545 - /incubator/harmony/enhanced/classlib/trunk/modules/prefs/src/main/java/java/util/prefs/Preferences.java Date: Wed, 31 May 2006 14:35:29 -0000 To: harmony-commits@incubator.apache.org From: tellison@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060531143529.72AD31A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: tellison Date: Wed May 31 07:35:28 2006 New Revision: 410545 URL: http://svn.apache.org/viewvc?rev=410545&view=rev Log: Generics uplift. Modified: incubator/harmony/enhanced/classlib/trunk/modules/prefs/src/main/java/java/util/prefs/Preferences.java Modified: incubator/harmony/enhanced/classlib/trunk/modules/prefs/src/main/java/java/util/prefs/Preferences.java URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/prefs/src/main/java/java/util/prefs/Preferences.java?rev=410545&r1=410544&r2=410545&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/prefs/src/main/java/java/util/prefs/Preferences.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/prefs/src/main/java/java/util/prefs/Preferences.java Wed May 31 07:35:28 2006 @@ -757,7 +757,7 @@ * if RuntimePermission("preferences") is denied * by a SecurityManager */ - public static Preferences systemNodeForPackage (Class c) { + public static Preferences systemNodeForPackage (Class c) { checkSecurity(); return factory.systemRoot().node(getNodeName(c)); } @@ -804,7 +804,7 @@ * if RuntimePermission("preferences") is denied * by a SecurityManager */ - public static Preferences userNodeForPackage (Class c) { + public static Preferences userNodeForPackage (Class c) { checkSecurity(); return factory.userRoot().node(getNodeName(c)); }