RE: Object serialization patch

2004-02-23 Thread Jeroen Frijters
Hi, Thanks for the patch. I have one question. int comp_val = - real_fields[real_idx].compareTo (stream_fields[stream_idx]); + real_fields[real_idx].getName().compareTo (stream_fields[stream_idx].getName()); By my reading of the spec, primitive fields are

Re: Object serialization patch

2004-02-23 Thread Guilhem Lavaux
Jeroen Frijters wrote: Hi, Thanks for the patch. I have one question. int comp_val = - real_fields[real_idx].compareTo (stream_fields[stream_idx]); + real_fields[real_idx].getName().compareTo (stream_fields[stream_idx].getName()); By my reading of the spec, primitive

Re: Object serialization patch

2004-02-23 Thread Guilhem Lavaux
Hi, Here is a new patch I propose. I've taken the suggestion into account and fix another small error reporting problem. New changelog entry: 2004-02-23 Guilhem Lavaux [EMAIL PROTECTED] * libraries/javalib/java/io/ObjectInputStream.java (readClassDescriptor): Fixed

Re: FOSDEM report

2004-02-23 Thread Michael Koch
Am Montag, 23. Februar 2004 17:42 schrieb Mark Wielaard: Hi all, FOSDEM was really, really nice! There were between 20 and 50 people following the different presentations, talks and discussions in our developer room. And Tom Tromey his talk on gcj in the big room got 120 interested people.

RE: Object serialization patch

2004-02-23 Thread Jeroen Frijters
Hi, Here is a new patch I propose. I've taken the suggestion into account and fix another small error reporting problem. I don't understand checkTypeConsistency, it looks odd and I'm having a hard time believing that it is correct. BTW, Shouldn't nonPrimitive be named primitive? Also, I

Re: Object serialization patch

2004-02-23 Thread Guilhem Lavaux
Jeroen Frijters wrote: Hi, Here is a new patch I propose. I've taken the suggestion into account and fix another small error reporting problem. I don't understand checkTypeConsistency, it looks odd and I'm having a hard time believing that it is correct. BTW, Shouldn't nonPrimitive be named