//Marcus Daniels December 26, 1999
//  That sounds like the directory that associates Objective C and Java
//  instances is filling up with unexpected things.

//  If you build:

//    ftp://ftp.santafe.edu/pub/swarm/testing/swarm-1999-12-26.tar.gz 

//  ..or use the javaswarm.dll and swarm.jar file at:

//    ftp://ftp.santafe.edu/pub/swarm/2.0.1-fixes

//  You can call `dumpDirectory' as in the example below to 
//  see what's going on...  
 
import swarm.Globals;
import swarm.objectbase.SwarmObjectImpl;

public class TestDumpDirectory {
  static public void main (String args []) {
    Globals.env.initSwarm ("TestDumpDirectory", "0.0", "mgd@swarm.org", args);

    Globals.env.dumpDirectory ();
  }
}

