From: Mathias Froehlich Date: Sat, 21 Jul 2012 10:55:53 +0000 (+0200) Subject: hla: Remove deprecated tick method. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1f46c793966cc3cb71eeb2c338b14c5f5559389b;p=simgear.git hla: Remove deprecated tick method. --- diff --git a/simgear/hla/HLAFederate.cxx b/simgear/hla/HLAFederate.cxx index 8cd173ad..55798d24 100644 --- a/simgear/hla/HLAFederate.cxx +++ b/simgear/hla/HLAFederate.cxx @@ -754,16 +754,6 @@ HLAFederate::processMessages() return true; } -bool -HLAFederate::tick(const double& minimum, const double& maximum) -{ - if (!_rtiFederate.valid()) { - SG_LOG(SG_NETWORK, SG_WARN, "HLA: Accessing unconnected federate!"); - return false; - } - return _rtiFederate->processMessages(minimum, maximum); -} - bool HLAFederate::readObjectModelTemplate(const std::string& objectModel, HLAFederate::ObjectModelFactory& objectModelFactory) diff --git a/simgear/hla/HLAFederate.hxx b/simgear/hla/HLAFederate.hxx index be052130..1f071f14 100644 --- a/simgear/hla/HLAFederate.hxx +++ b/simgear/hla/HLAFederate.hxx @@ -162,9 +162,6 @@ public: /// a pending time advance is granted. bool processMessages(); - /// Legacy tick call - deprecated - bool tick(const double& minimum, const double& maximum); - class ObjectModelFactory { public: virtual ~ObjectModelFactory()