Update of /cvsroot/nice/Nice/src/gnu/expr
In directory sc8-pr-cvs1:/tmp/cvs-serv8428/src/gnu/expr
Modified Files:
ModuleBody.java
Log Message:
Prevent ModuleBody to depend on Values, which is not available at runtime.
Index: ModuleBody.java
===================================================================
RCS file: /cvsroot/nice/Nice/src/gnu/expr/ModuleBody.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** ModuleBody.java 21 Jul 2003 23:20:14 -0000 1.8
--- ModuleBody.java 28 Jul 2003 10:04:49 -0000 1.9
***************
*** 130,134 ****
public Object apply0(ModuleMethod method)
{
! return applyN(method, Values.noArgs);
}
--- 130,134 ----
public Object apply0(ModuleMethod method)
{
! return applyN(method, ProcedureN.noArgs);
}
|