diff --git a/public/appframework/IAppSystem.h b/public/appframework/IAppSystem.h index b3fe53bb..20f9285c 100644 --- a/public/appframework/IAppSystem.h +++ b/public/appframework/IAppSystem.h @@ -76,9 +76,6 @@ public: // Reconnect to a particular interface virtual void Reconnect( CreateInterfaceFn factory, const char *pInterfaceName ) = 0; - - // Returns whether or not the app system is a singleton - virtual bool IsSingleton() = 0; }; @@ -108,8 +105,6 @@ public: { ReconnectInterface( factory, pInterfaceName ); } - - virtual bool IsSingleton() { return true; } };