clan: remove diff_method

This commit is contained in:
Swann 2021-01-22 14:24:19 +01:00
parent 2304563b6e
commit 4d69faf186
No known key found for this signature in database
GPG Key ID: E1D3641A7C43AACB
3 changed files with 1 additions and 7 deletions

View File

@ -44,7 +44,7 @@ from . import environment
DEPENDENCIES = {
("replication", '0.1.23'),
("replication", '0.1.24'),
}

View File

@ -129,11 +129,6 @@ class BlDatablock(ReplicatedDatablock):
if instance and hasattr(instance, 'uuid'):
instance.uuid = self.uuid
if logging.getLogger().level == logging.DEBUG:
self.diff_method = DIFF_JSON
else:
self.diff_method = DIFF_BINARY
def resolve(self, construct = True):
datablock_ref = None
datablock_root = getattr(bpy.data, self.bl_id)

View File

@ -69,7 +69,6 @@ class BlFile(ReplicatedDatablock):
raise FileNotFoundError(str(self.instance))
self.preferences = utils.get_preferences()
self.diff_method = DIFF_BINARY
def resolve(self, construct = True):
if self.data: