view src/alice/test/topology/aquarium/fx/StartAquarium.java @ 15:3458bde834d3

remove NullPointerException
author e095732
date Sat, 02 Feb 2013 02:24:05 +0900
parents b997f2ce1a04
children
line wrap: on
line source

package alice.test.topology.aquarium.fx;

import alice.topology.node.TopologyNode;

public class StartAquarium {
	public static void main(String[] args){
		AquariumConfig conf = new AquariumConfig(args);
		new TopologyNode(conf, new StartCodeSegment());
	}

}