Removed getDiagnostics from controllers.py

This commit is contained in:
Patrick Goebel 2016-09-12 06:10:16 -07:00
parent 9d0ed30c9c
commit 0a2877a6b8

View File

@ -61,13 +61,4 @@ class Controller:
## @brief Is the controller actively sending commands to joints?
def active(self):
return False
## @brief Get a diagnostics message for this joint.
##
## @return Diagnostics message.
def getDiagnostics(self):
msg = DiagnosticStatus()
msg.name = self.name
msg.level = DiagnosticStatus.OK
msg.message = "OK"
return msg