Changeset 12775


Ignore:
Timestamp:
07/02/10 09:42:24 (13 years ago)
Author:
Mark Evenson
Message:

Fix compiler errors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/JProxy.java

    r12774 r12775  
    224224      LispObject ifList = args[0];
    225225      for(int i = 0; i < ifaces.length; i++) {
    226           ifaces[i] = ifList.car().javaInstance(Class.class);
     226                          ifaces[i] = (Class) ifList.car().javaInstance(Class.class);
    227227          ifList = ifList.cdr();
    228228      }
    229             InvocationHandler invocationHandler = ((JavaObject) args[1]).javaInstance(InvocationHandler.class);
     229            InvocationHandler invocationHandler = (InvocationHandler) ((JavaObject) args[1]).javaInstance(InvocationHandler.class);
    230230            Object proxy = Proxy.newProxyInstance(
    231231                JavaClassLoader.getCurrentClassLoader(),
Note: See TracChangeset for help on using the changeset viewer.