view src/alice/test/topology/aquarium/RoutingTable.java @ 214:fec0726bb126 working

remove error
author one
date Wed, 27 Mar 2013 18:16:34 +0900
parents 53aff28cde6b
children
line wrap: on
line source

package alice.test.topology.aquarium;

import java.util.ArrayList;
import java.util.List;

import org.msgpack.annotation.Message;

@Message
public class RoutingTable {
	public List<Routing> table = new ArrayList<Routing>();
	
}