This fixes a signature which now has type parameters
on the generics branch.

2006-07-05  Andrew John Hughes  <[EMAIL PROTECTED]>

        * java/lang/Thread.java:
        (getAllStackTraces(Map<Thread,StackTraceElement[]>)):
        Added generic type signature.

-- 
Andrew :-)

Escape the Java Trap with GNU Classpath!
http://www.gnu.org/philosophy/java-trap.html
public class gcj extends Freedom implements Java { ... }
Index: java/lang/Thread.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/lang/Thread.java,v
retrieving revision 1.8.2.20
diff -u -3 -p -u -r1.8.2.20 Thread.java
--- java/lang/Thread.java       2 Jul 2006 21:43:37 -0000       1.8.2.20
+++ java/lang/Thread.java       5 Jul 2006 21:42:00 -0000
@@ -1312,7 +1312,7 @@ public class Thread implements Runnable
    * @since 1.5
    * @see #getStackTrace()
    */
-  public static Map getAllStackTraces()
+  public static Map<Thread, StackTraceElement[]> getAllStackTraces()
   {
     ThreadGroup group = currentThread().group;
     while (group.getParent() != null)

Attachment: signature.asc
Description: Digital signature

Reply via email to