[cp-patches] [RFC/PATCH] Add java.io.IOError class

2012-01-05 Thread Pekka Enberg
This patch adds a missing IOError class to GNU Classpath that was introduced in Java 1.6. 2012-01-05 Pekka Enberg penb...@kernel.org * java/io/IOError: Add new class. Signed-off-by: Pekka Enberg penb...@kernel.org --- java/io/IOError.java | 54

[cp-patches] [RFC/PATCH v2 1/2] Add java.io.IOError class

2012-01-05 Thread Pekka Enberg
This patch adds a missing IOError class to GNU Classpath that was introduced in Java 1.6. 2012-01-05 Pekka Enberg penb...@kernel.org * java/io/IOError: Add new class. Signed-off-by: Pekka Enberg penb...@kernel.org --- java/io/IOError.java | 54

[cp-patches] [RFC/PATCH 2/2] Add java/io/Console class and java/lang/System.console() method

2012-01-05 Thread Pekka Enberg
This patch implements java/io/Console and adds a console() method to java/lang/System. The implementation is lame but it works reasonably well. 2012-01-05 Pekka Enberg penb...@kernel.org * java/io/Console: Add new class. * java/lang/System.java: (console): Add