commit-classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Patch: FYI: remove unused label


From: Tom Tromey
Subject: Patch: FYI: remove unused label
Date: 01 Apr 2004 10:49:42 -0700

I'm checking this in.  This removes an unused label.

Tom

Index: ChangeLog
from  Tom Tromey  <address@hidden>

        * java/security/Security.java (provides): Removed unused label.

Index: java/security/Security.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/security/Security.java,v
retrieving revision 1.26
diff -u -r1.26 Security.java
--- java/security/Security.java 30 Nov 2003 14:49:59 -0000 1.26
+++ java/security/Security.java 1 Apr 2004 17:32:31 -0000
@@ -1,5 +1,5 @@
 /* Security.java --- Java base security class implementation
-   Copyright (C) 1999, 2001, 2002, 2003, Free Software Foundation, Inc.
+   Copyright (C) 1999, 2001, 2002, 2003, 2004, Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -670,7 +670,7 @@
     outer: for (int r = 0; r < 3; r++) // guard against circularity
       {
         serviceDotAlgorithm = (svc+"."+String.valueOf(algo)).trim();
-        inner: for (it = p.keySet().iterator(); it.hasNext(); )
+        for (it = p.keySet().iterator(); it.hasNext(); )
           {
             key = (String) it.next();
             if (key.equalsIgnoreCase(serviceDotAlgorithm)) // eureka




reply via email to

[Prev in Thread] Current Thread [Next in Thread]