[session] drop dead code
authorPierre-Yves David <pierre-yves.david@logilab.fr>
Mon, 25 Mar 2013 12:41:13 +0100
changeset 8781 f1a5792dd8a3
parent 8780 d3e49fc74e79
child 8782 ee675f0a9612
[session] drop dead code session._tx is never None. New transaction are created if necessary.
server/session.py
--- a/server/session.py	Fri Mar 22 20:14:08 2013 +0100
+++ b/server/session.py	Mon Mar 25 12:41:13 2013 +0100
@@ -652,10 +652,7 @@
     @property
     def read_security(self):
         """return a boolean telling if read security is activated or not"""
-        tx = self._tx
-        if tx is None:
-            return DEFAULT_SECURITY
-        return tx.read_security
+        return  self._tx.read_security
 
     def set_read_security(self, activated):
         """[de]activate read security, returning the previous value set for
@@ -665,8 +662,6 @@
         of this to change security settings.
         """
         tx = self._tx
-        if tx is None:
-            return DEFAULT_SECURITY
         oldmode = tx.read_security
         tx.read_security = activated
         # dbapi_query used to detect hooks triggered by a 'dbapi' query (eg not
@@ -692,10 +687,7 @@
     @property
     def write_security(self):
         """return a boolean telling if write security is activated or not"""
-        tx = self._tx
-        if tx is None:
-            return DEFAULT_SECURITY
-        return tx.write_security
+        return self._tx.write_security
 
     def set_write_security(self, activated):
         """[de]activate write security, returning the previous value set for
@@ -705,8 +697,6 @@
         of this to change security settings.
         """
         tx = self._tx
-        if tx is None:
-            return DEFAULT_SECURITY
         oldmode = tx.write_security
         tx.write_security = activated
         return oldmode