Mysaifu JVM is a free Java virtual machine for Windows Mobile.
Package java.awt
* FIXED: Resource leak in BufferedImage.getGraphics().(Bug #14778)
* FIXED: Following code does not work correctly. (Bug #15066)
BufferedImage img = new BufferedImage(...);
Graphics2D g = img.createGraphics();
Graphics2D g2 = g.create();
g2.drawRectngle();
g.drawString();
Package java.lang.reflect
* FIXED:Class.getAnnotations(), Method.getAnnotations(), Field.getAnnotations() always returns empty array.(Bug #14996)
パッケージjava.awt
* BufferedImage.getGraphics()でリソースリークが発生していた。(Bug #14778)
* 以下のコードで、g2に対する描画内容が失われていた。 (Bug #15066)
BufferedImage img = new BufferedImage(...);
Graphics2D g = img.createGraphics();
Graphics2D g2 = g.create();
g2.drawRectngle();
g.drawString();
パッケージjava.lang.reflect
* Class.getAnnotations(), Method.getAnnotations(), Field.getAnnotations()を実装した。(Bug #14996)