This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: PR java/14070: gij and -jar argument should set the manifest Class-path recursively
>>>>> "Andrew" == Andrew Haley <aph@redhat.com> writes:
Andrew> Okay, I think I see. So, at entry to the URLClassLoader you create a
Andrew> hash table and then when you're looping around all the sub-loaders you
Andrew> check the hash table to see where you've been. I'll try it.
I just meant while reading the Class-Path entries of the jar files,
keep track of where you've been and don't revisit. Then at the end
you will have a unique-ified list that you keep. Is this what you
meant? I couldn't tell from what you wrote if you meant you would do
the check when looking up a class or resource -- I would expect that
to be too expensive.
Tom