]> sigrok.org Git - libsigrokdecode.git/commitdiff
sdcard_sd: remove unused .reset() method
authorGerhard Sittig <redacted>
Fri, 22 Dec 2017 01:35:12 +0000 (02:35 +0100)
committerUwe Hermann <redacted>
Fri, 22 Dec 2017 11:18:13 +0000 (12:18 +0100)
The decoder's .reset() method seems to partially implement constructor's
assignments, but is not referenced anywhere. There is neither a direct
call site in the remainder of pd.py which uses the "reset" name, and
runtime computation only references "handle_*()" methods for commands
and responses.

Drop the unused .reset() method in the individual decoder before the
introduction of a common .reset() method approach for all decoders.

decoders/sdcard_sd/pd.py

index 4f10f7ca9fa87256c1cbaf8b29c5bc4921b480e9..2382a1534a7813519b5c238120c949b48572981d 100644 (file)
@@ -92,10 +92,6 @@ class Decoder(srd.Decoder):
     def putr(self, desc):
         self.putt([self.last_cmd, ['Reply: %s' % desc]])
 
-    def reset(self):
-        self.cmd, self.arg = None, None
-        self.token, self.state = [], 'GET COMMAND TOKEN'
-
     def cmd_name(self, cmd):
         c = acmd_names if self.is_acmd else cmd_names
         return c.get(cmd, 'Unknown')