diff --git a/mRemoteV1/Config/Connections/Multiuser/SqlConnectionsUpdateChecker.cs b/mRemoteV1/Config/Connections/Multiuser/SqlConnectionsUpdateChecker.cs index bd2a50aa5..eb9f26456 100644 --- a/mRemoteV1/Config/Connections/Multiuser/SqlConnectionsUpdateChecker.cs +++ b/mRemoteV1/Config/Connections/Multiuser/SqlConnectionsUpdateChecker.cs @@ -28,7 +28,6 @@ namespace mRemoteNG.Config.Connections { RaiseUpdateCheckStartedEvent(); ConnectToSqlDb(); - ExecuteQuery(); var updateIsAvailable = DatabaseIsMoreUpToDateThanUs(); if (updateIsAvailable) RaiseConnectionsUpdateAvailableEvent(); @@ -55,18 +54,6 @@ namespace mRemoteNG.Config.Connections } } - private void ExecuteQuery() - { - try - { - - } - catch (Exception ex) - { - Runtime.MessageCollector.AddMessage(MessageClass.WarningMsg, "Error executing Sql query to get updates from the DB." + Environment.NewLine + ex.Message, true); - } - } - private bool DatabaseIsMoreUpToDateThanUs() { return GetLastUpdateTimeFromDbResponse() > _lastUpdateTime;