Re: CFV: Project sponsorship: More New I/0 APIs for te Java Platform (JSR-203)

2008-04-18 Thread iris clark
Regarding the CFV on the following question[1]: Should the Core Libraries Group sponsor the More New I/O APIs for the Java Platform (JSR-203) Project? Voting has now concluded. I have received Yes votes from the following 9 members of the Core Libraries Group: Christopher Hegarty

TreeMap.navigableKeySet().descendingIterator() sequence ?

2008-04-18 Thread charlie hunt
Been looking at TreeMap's implementation rather closely and observed something I don't understand. %-) TreeMap (as of JDK 6 and later) implements NavigableMap. NavigableMap requires an implementation of a navigableKeySet() method which returns a NavigableSetK. So, in TreeMap I see:

hg: jdk7/tl/jdk: 6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes

2008-04-18 Thread keith . mcguigan
Changeset: 2bfddc119eea Author:kamg Date: 2008-04-17 22:00 -0400 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/2bfddc119eea 6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes Summary: Initial checkin of JSDT code Reviewed-by: sspitsyn, sbohne !

Re: TreeMap.navigableKeySet().descendingIterator() sequence ?

2008-04-18 Thread kevin bourrillion
Wow. TreeMap.java line 1024: return new DescendingKeyIterator(getFirstEntry()); Sure does look fishy. On Thu, Apr 17, 2008 at 2:54 PM, charlie hunt [EMAIL PROTECTED] wrote: Been looking at TreeMap's implementation rather closely and observed something I don't understand. %-)