Changeset 3945


Ignore:
Timestamp:
09/21/03 01:41:51 (20 years ago)
Author:
piso
Message:

Removed unused constructors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/lisp/UndefinedFunction.java

    r3929 r3945  
    33 *
    44 * Copyright (C) 2002-2003 Peter Graves
    5  * $Id: UndefinedFunction.java,v 1.2 2003-09-20 17:02:05 piso Exp $
     5 * $Id: UndefinedFunction.java,v 1.3 2003-09-21 01:41:51 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    2727    private final String name;
    2828
    29     public UndefinedFunction()
    30     {
    31         object = null;
    32         name = null;
    33     }
    34 
    3529    public UndefinedFunction(LispObject object)
    3630    {
    3731        this.object = object;
    3832        this.name = null;
    39     }
    40 
    41     public UndefinedFunction(String name)
    42     {
    43         this.object = null;
    44         this.name = name;
    4533    }
    4634
Note: See TracChangeset for help on using the changeset viewer.