OSDN Git Service

update command line interface, and introduce command pattern in Main class
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / BirthmarkEnvironment.java
index 4287d2b..41a81c4 100644 (file)
@@ -323,7 +323,7 @@ public class BirthmarkEnvironment{
     private List<BirthmarkSpi> getServiceList(){
         List<BirthmarkSpi> list = new ArrayList<BirthmarkSpi>();
         if(parent != null){
-            for(BirthmarkSpi spi : parent.getServices()){
+            for(BirthmarkSpi spi: parent.getServices()){
                 list.add(spi);
             }
         }