Re: JDK-8130738 TextFlow's tab width is static

2019-09-23 Thread Scott Palmer
My current work is here https://github.com/javafxports/openjdk-jfx/compare/develop...swpalmer:jdk-8130738?expand=1 While writing a unit test I realized that the StubToolkit isn’t really running the

Re: Use of Hashtable in Prism

2019-09-23 Thread Kevin Rushforth
No good reason that I can think of. This seems like something that could be cleaned up if someone wanted to file an issue and contribute a fix. -- Kevin On 9/23/2019 10:18 AM, Scott Palmer wrote: I just noticed that NetBeans is warning me about use of an “obsolete collection” in

Re: Use of Hashtable in Prism

2019-09-23 Thread Philip Race
I am not sure but mutation of the Hashtable only happens from inside a block synchronized on CACHE_SIZE_LOCK. Perhaps this somehow plays into it .. in some way I can't see. But I am told that uncontended locks are quite cheap these days. -phil On 9/23/19, 10:18 AM, Scott Palmer wrote: I just

Use of Hashtable in Prism

2019-09-23 Thread Scott Palmer
I just noticed that NetBeans is warning me about use of an “obsolete collection” in PrismTextLayout.java. Is there a reason this isn’t using HashMap or ConcurrentHashMap ? Scott