Changeset 14500


Ignore:
Timestamp:
05/15/13 08:06:03 (10 years ago)
Author:
rschlatte
Message:

Remove direct references to generic-function class from Java

File:
1 edited

Legend:

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

    r14497 r14500  
    26582658                value2 = T;
    26592659                value3 = ((Function)arg).getLambdaName();
    2660             } else if (arg.typep(StandardClass.GENERIC_FUNCTION) != NIL) {
     2660            } else if (arg.typep(Symbol.GENERIC_FUNCTION) != NIL) {
    26612661                value1 = NIL;
    26622662                value2 = T;
     
    42214221                return ((Operator)arg).getLambdaName();
    42224222            }
    4223             if (arg.typep(StandardClass.GENERIC_FUNCTION) != NIL) {
     4223            if (arg.typep(Symbol.GENERIC_FUNCTION) != NIL) {
    42244224                return Symbol.GENERIC_FUNCTION_NAME.execute(arg);
    42254225            }
Note: See TracChangeset for help on using the changeset viewer.