Hi Geir, So, it's time for me to learn, slowly, the customs of the Harmony project. I'm ready to contribute the following 4 very modest patches.
FYI, I seeked the SerialVersionUIDs in Sun's public API: http://java.sun.com/j2se/1.5.0/docs/api/serialized-form.html What's the usual procedure? [both in the legal sense and the technical one] Thanks for your patience helping a newbie, Etienne PS: I can make it into one patch. I am just trying to figure out the desired granularity for contributions. Magnusson, Geir wrote: > Thanks for volunteering..... :) -- Etienne M. Gagnon, Ph.D. http://www.info2.uqam.ca/~egagnon/ SableVM: http://www.sablevm.org/ SableCC: http://www.sablecc.org/
Index: modules/luni/src/main/java/java/lang/IllegalArgumentException.java
===================================================================
--- modules/luni/src/main/java/java/lang/IllegalArgumentException.java
(revision 390759)
+++ modules/luni/src/main/java/java/lang/IllegalArgumentException.java
(working copy)
@@ -22,6 +22,8 @@
*/
public class IllegalArgumentException extends RuntimeException {
+ private static final long serialVersionUID = -5365630128856068164L;
+
/**
* Constructs a new instance of this class with its walkback filled in.
*/
Index: modules/luni/src/main/java/java/lang/IllegalStateException.java
===================================================================
--- modules/luni/src/main/java/java/lang/IllegalStateException.java
(revision 390759)
+++ modules/luni/src/main/java/java/lang/IllegalStateException.java
(working copy)
@@ -22,6 +22,8 @@
*/
public class IllegalStateException extends RuntimeException {
+ private static final long serialVersionUID = -1848914673093119416L;
+
/**
* Constructs a new instance of this class with its walkback filled in.
*/
Index: modules/luni/src/main/java/java/lang/SecurityException.java
===================================================================
--- modules/luni/src/main/java/java/lang/SecurityException.java (revision
390759)
+++ modules/luni/src/main/java/java/lang/SecurityException.java (working copy)
@@ -21,6 +21,8 @@
*/
public class SecurityException extends java.lang.RuntimeException {
+ private static final long serialVersionUID = 6878364983674394167L;
+
/**
* Constructs a new instance of this class with its walkback filled in.
*/
Index: modules/luni/src/main/java/java/lang/UnsupportedOperationException.java
===================================================================
--- modules/luni/src/main/java/java/lang/UnsupportedOperationException.java
(revision 390759)
+++ modules/luni/src/main/java/java/lang/UnsupportedOperationException.java
(working copy)
@@ -21,6 +21,8 @@
*/
public class UnsupportedOperationException extends RuntimeException {
+ private static final long serialVersionUID = -1242599979055084673L;
+
/**
* Constructs a new instance of this class with its walkback filled in.
*/
signature.asc
Description: OpenPGP digital signature
