comparison src/main/java/alice/test/topology/ring/RingTopology.java @ 419:aefbe41fcf12 dispose

change tab to space
author sugi
date Tue, 15 Jul 2014 16:00:22 +0900
parents 8f71c3e6f11d
children
comparison
equal deleted inserted replaced
418:a269a019f5f8 419:aefbe41fcf12
1 package alice.test.topology.ring; 1 package alice.test.topology.ring;
2 2
3 import alice.topology.node.TopologyNode; 3 import alice.topology.node.TopologyNode;
4 4
5 public class RingTopology { 5 public class RingTopology {
6 6
7 public static void main(String[] args) { 7 public static void main(String[] args) {
8 RingTopologyConfig conf = new RingTopologyConfig(args); 8 RingTopologyConfig conf = new RingTopologyConfig(args);
9 new TopologyNode(conf, new StartRing(conf)); 9 new TopologyNode(conf, new StartRing(conf));
10 } 10 }
11 11
12 } 12 }