This is the mail archive of the kawa@sourceware.org mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Kawa on Android - problems with kawa.standard.Scheme


The problem appears to be the getContextClassLoader in
gnu/bytecode/ObjectType.java.  If you get rid of the
special case for Android, then it should work:

  public static ClassLoader getContextClassLoader ()
  {
    try
      {
        return Thread.currentThread().getContextClassLoader();
      }

So the question is why did I make this special case for Android
in the first place?  Perhaps earlier versions of Android needed it?
--
	--Per Bothner
per@bothner.com   http://per.bothner.com/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]