commit-classpath
[Top][All Lists]
Advanced

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

Small static method call cleanup


From: Mark Wielaard
Subject: Small static method call cleanup
Date: Thu, 24 Jun 2004 19:20:52 +0200

Hi,

here is a small static method call cleanup to silence a compiler
warning.

2004-06-24  Mark Wielaard  <address@hidden>

       * gnu/java/nio/SelectorImpl.java (select): Call static Thread
       interrupted() method to clear interupt flag of our Thread.

Committed.

Cheers,

Mark
diff -u -r1.14 SelectorImpl.java
--- gnu/java/nio/SelectorImpl.java      8 Jan 2004 08:43:37 -0000      
1.14
+++ gnu/java/nio/SelectorImpl.java      24 Jun 2004 17:19:23 -0000
@@ -261,7 +261,7 @@
                 if (unhandledWakeup)
                   {
                     unhandledWakeup = false;
-                    selectThread.interrupted ();
+                    Thread.interrupted ();
                   }
                 selectThread = null;
               }

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

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