Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2019-10-06 10:41:28 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-10-06 10:41:28 +0300
commit9126550bdb60bee275c98c87ac4b2b0e5befd5c8 (patch)
tree33ac3d1b4301da84f611310102df0364de16f557 /nbxmpp/structs.py
parent6a89fcfbd803d6a8cba202a5456dec8e7a49d43d (diff)
ChatMarkers: Remove unnecessary code
Diffstat (limited to 'nbxmpp/structs.py')
-rw-r--r--nbxmpp/structs.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/nbxmpp/structs.py b/nbxmpp/structs.py
index 5f2889a..bc3b103 100644
--- a/nbxmpp/structs.py
+++ b/nbxmpp/structs.py
@@ -604,24 +604,6 @@ class MessageProperties:
def is_marker(self):
return self.marker is not None
- @property
- def is_acknowledged_marker(self):
- if self.marker is None:
- return False
- return self.marker.is_acknowledged
-
- @property
- def is_received_marker(self):
- if self.marker is None:
- return False
- return self.marker.is_received
-
- @property
- def is_displayed_marker(self):
- if self.marker is None:
- return False
- return self.marker.is_displayed
-
class IqProperties:
def __init__(self):