Merge remote-tracking branch 'origin/master' into NewConnectors1

Conflicts:
	README.md
	pom.xml
This commit is contained in:
Admin
2017-02-16 15:22:06 -06:00
16 changed files with 49 additions and 16 deletions

View File

@@ -1,5 +1,6 @@
package com.bwssystems.HABridge;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
@@ -101,6 +102,11 @@ public class HomeManager {
}
public void closeHomes() {
Collection<Home> theHomes = homeList.values();
for(Home aHome : theHomes) {
aHome.closeHome();
}
homeList.clear();
homeList = null;
}
}