Don't do transition from Implemented to Setup for network

This commit is contained in:
alena 2010-12-08 10:57:09 -08:00
parent 5c689f3db7
commit 013ed05ca7
1 changed files with 0 additions and 4 deletions

View File

@ -978,10 +978,6 @@ public class NetworkManagerImpl implements NetworkManager, NetworkService, Manag
NetworkGuru guru = _networkGurus.get(config.getGuruName());
Network.State state = config.getState();
if (state == Network.State.Implemented || state == Network.State.Setup) {
if (state == Network.State.Setup) {
config.setState(Network.State.Implemented);
_networksDao.update(networkId, config);
}
implemented.set(guru, config);
return implemented;
}