Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill methods overriding super to the same content
authorMartin Quinson <martin.quinson@loria.fr>
Wed, 6 Jan 2016 21:38:58 +0000 (22:38 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Wed, 6 Jan 2016 21:38:58 +0000 (22:38 +0100)
src/surf/network_constant.cpp
src/surf/network_constant.hpp

index 0d90ff7..326f31b 100644 (file)
@@ -125,21 +125,5 @@ void NetworkConstantAction::setCategory(const char * /*category*/)
   //ignore completely the categories in constant model, they are not traced
 }
 
   //ignore completely the categories in constant model, they are not traced
 }
 
-void NetworkConstantAction::suspend()
-{
-  m_suspended = true;
-}
-
-void NetworkConstantAction::resume()
-{
-  if (m_suspended)
-       m_suspended = false;
-}
-
-bool NetworkConstantAction::isSuspended()
-{
-  return m_suspended;
-}
-
 }
 }
 }
 }
index 8f3e1b9..742ed64 100644 (file)
@@ -66,11 +66,7 @@ public:
   int unref();
   void cancel();
   void setCategory(const char *category);
   int unref();
   void cancel();
   void setCategory(const char *category);
-  void suspend();
-  void resume();
-  bool isSuspended();
   double m_latInit;
   double m_latInit;
-  int m_suspended;
 };
 
 }
 };
 
 }