Changeset: 961ea5a46a0c
Author:martin
Date: 2009-01-09 16:48 -0800
URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/961ea5a46a0c
6792066: src/share/native/java/io/io_util.c clean-ups
Reviewed-by: alanb
! src/share/native/java/io/io_util.c
! src/share/native/java/io/io_util.h
The bug report is online:
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6790402
I includes *8* items, to speed-up FastCharsetProvider,
and 1 real bug concerning thread-safety.
-Ulf
Am 04.01.2009 02:19, Ulf Zibis schrieb:
Hi Sherman, hi Martin,
I took a closer look to sun.io.cs.FastChar
Changeset: 47a62d8d98b4
Author:bpatel
Date: 2009-01-08 16:26 -0800
URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/47a62d8d98b4
6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold
tags should be strong
Reviewed-by: jjg
!
src/share/classes/com/sun/t
Hello.
Clemens Eisserer wrote:
Hi,
I currently use an utility-class heavily for the XRender Java2D
backend, which performs saturated casts:
1.) return (short) (x > Short.MAX_VALUE ? Short.MAX_VALUE : (x <
Short.MIN_VALUE ? Short.MIN_VALUE : x));
2.) return (short) (x > 65535 ? 65535 : (x < 0)