@@ -69,9 +69,6 @@ def getEntryTypeById(self, local_id):
69
69
def getEntryValue (self , name ):
70
70
return self .storage .getEntryValue (name )
71
71
72
- def getEntryValueById (self , local_id ):
73
- return self .storage .getEntryValueById (local_id )
74
-
75
72
def setDefaultEntryValue (self , name , value ):
76
73
return self .storage .setDefaultEntryValue (name , value )
77
74
@@ -100,13 +97,13 @@ def getEntryFlags(self, name):
100
97
return self .storage .getEntryFlags (name )
101
98
102
99
def getEntryFlagsById (self , local_id ):
103
- return self .storage .getEntryFlags (local_id )
100
+ return self .storage .getEntryFlagsById (local_id )
104
101
105
102
def deleteEntry (self , name ):
106
103
self .storage .deleteEntry (name )
107
104
108
105
def deleteEntryById (self , local_id ):
109
- self .storage .deleteEntry (local_id )
106
+ self .storage .deleteEntryById (local_id )
110
107
111
108
def deleteAllEntries (self ):
112
109
self .storage .deleteAllEntries ()
@@ -188,7 +185,7 @@ def pollConnectionListener(self, poller_uid, timeout=None):
188
185
return self .conn_notifier .poll (poller_uid , timeout = timeout )
189
186
190
187
def cancelPollConnectionListener (self , poller_uid ):
191
- self .conn_notifier .cancelPoll ()
188
+ self .conn_notifier .cancelPoll (poller_uid )
192
189
193
190
def removeConnectionListener (self , listener_uid ):
194
191
self .conn_notifier .remove (listener_uid )
0 commit comments