no need for shared instances here

This commit is contained in:
Jakob Ketterl
2019-09-15 21:10:30 +02:00
parent 5b6edd110d
commit b0b2df5422
2 changed files with 4 additions and 11 deletions

View File

@ -205,16 +205,9 @@ class AprsHandler(object):
pass
class ServiceManager(object):
sharedInstance = None
class Services(object):
@staticmethod
def getSharedInstance():
if ServiceManager.sharedInstance is None:
ServiceManager.sharedInstance = ServiceManager()
return ServiceManager.sharedInstance
def start(self):
def start():
if not PropertyManager.getSharedInstance()["services_enabled"]:
return
for source in SdrService.getSources().values():