Re: Weird characters in java/lang/Character.java

2001-09-07 Thread Chris Gray
Etienne M. Gagnon wrote: Thanks. I have came to the same conclusion, using a small program looking for non-ASCII characters in all .java files. The real issue I had proved to be a Jikes 1.14 (on Debian?) problem, where many other files failed to compile for a different reason. It's

Re: Ant (was Re: about RMI)

2001-09-07 Thread Takashi Okamoto
At Thu, 06 Sep 2001 10:02:14 -0400, Etienne M. Gagnon [EMAIL PROTECTED] wrote: I have already packaged a version of Classpath using Ant. It is called Sablepath-classes, and it resides in the CVS repository of the SableVM project on SourceForge. You can give it a look. I couldn't compile

Re: Duplicate JNI files.

2001-09-07 Thread Brian Jones
Etienne M. Gagnon [EMAIL PROTECTED] writes: A look at the Makefile.am files seem to indicate that most current files are usually in native/jni, but a careful look into ChangeLog shows that sometime, both duplicates evolves into its own branch. I haven't deleted the old native/java.* things

Re: Ant (was Re: about RMI)

2001-09-07 Thread Takashi Okamoto
At Fri, 7 Sep 2001 06:11:51 -0700, Anthony Green wrote: gcj has a --encoding= option. I didn't know such a option, thanks. And what do you mean by no debug? I'm wrong. I didn't implement about debug. But someone put it into latter.. I would just change these to use -g and -O2 I'll

Re: Duplicate JNI files.

2001-09-07 Thread Etienne M. Gagnon
On Fri, Sep 07, 2001 at 09:03:27AM -0400, Brian Jones wrote: I haven't deleted the old native/java.* things yet. Things were moved to make room for a cni directory at the same level as the jni directory. I asked about putting all of them in one directory and agreement was that would be

Re: [Patch #25] String.CASE_INSENSITIVE_ORDER implements Serializable

2001-09-07 Thread Tom Tromey
Eric == Eric Blake [EMAIL PROTECTED] writes: Eric Aha - I just got the email today that my paperwork cleared FSF. Eric So, now it's just a matter of getting my CVS write access set Eric up, and I'll check this in. Is this in progress? If you want I can send email to the cvs guys to get you an

Re: jazzlib into java.util.zip

2001-09-07 Thread Tom Tromey
John == John Leuner [EMAIL PROTECTED] writes: John 2001-09-07 John Leuner [EMAIL PROTECTED] John* java/util/zip/*.java: imported the jazzlib code. Should Johnall be functional. John I compiled it, but haven't run it. It should all work however. Which repository is the master

Re: Duplicate JNI files.

2001-09-07 Thread Tom Tromey
Brian == Brian Jones [EMAIL PROTECTED] writes: Etienne Also, you'll notice that the current Classpath native/jni Etienne code does not build the libbigint.so library, even though Etienne it is required by the Java source code... [Thanks to Etienne brain-dead scripts, finding such things can be

Re: Duplicate JNI files.

2001-09-07 Thread Etienne M. Gagnon
On Fri, Sep 07, 2001 at 08:11:50PM -0600, Tom Tromey wrote: Brian I'm almost done eith a full javap replacement that uses GNU Brian bytecode. Writing javah is trivial as well with this package Brian and I'll do it soon. Getting the decompilation to java Brian assembly to display as I want

Re: Duplicate JNI files.

2001-09-07 Thread Etienne M. Gagnon
Brian wrote: I'll remove the files shortly. Ooops, I had missed this bit;-) OK. Super! Etienne -- Etienne M. Gagnonhttp://www.info.uqam.ca/~egagnon/ SableVM: http://www.sablevm.org/ SableCC:

java.util.HashSet

2001-09-07 Thread Eric Blake
I was just looking at the code for HashSet tonight, and noticed that it just uses HashMap as its backing store. This may be the way that Sun does it, according to their javadoc, but I don't think the implementation is a necessary detail; just the API and behavior. And it seems to me that making