From 6d53963f375c77a1f287833b19b976d23f36c30b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20K=C3=A4=C3=A4ri=C3=A4inen?= Date: Sat, 11 Jan 2014 22:10:24 +0200 Subject: [PATCH] Dead code removal --- django/db/models/sql/datastructures.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/django/db/models/sql/datastructures.py b/django/db/models/sql/datastructures.py index 58a6576504..421c3cd860 100644 --- a/django/db/models/sql/datastructures.py +++ b/django/db/models/sql/datastructures.py @@ -15,10 +15,6 @@ class Col(object): def output_type(self): return self.source - @property - def field(self): - return self.source - def relabeled_clone(self, relabels): return self.__class__(relabels.get(self.alias, self.alias), self.target, self.source)