pySim/filesystem: Remove left-over debug print statements

the print statements in read_binary_decoded and update_binary_decoded
should have been removed a long time ago.

Change-Id: I9ccc61c426a755fae9008d0717d579fa2da0ef7c
This commit is contained in:
Harald Welte 2021-04-06 21:19:14 +02:00
parent 9ae33c8ad9
commit f431189a9e
1 changed files with 0 additions and 2 deletions

View File

@ -983,7 +983,6 @@ class RuntimeState(object):
"""
(data, sw) = self.read_binary()
dec_data = self.selected_file.decode_hex(data)
print("%s: %s -> %s" % (sw, data, dec_data))
return (dec_data, sw)
def update_binary(self, data_hex:str, offset:int=0):
@ -1005,7 +1004,6 @@ class RuntimeState(object):
data : abstract data which is to be encoded and written
"""
data_hex = self.selected_file.encode_hex(data)
print("%s -> %s" % (data, data_hex))
return self.update_binary(data_hex)
def read_record(self, rec_nr:int=0):