From a9d6d2bff167a1ac8706d342ac48e4dcd1d41f6a Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Sat, 5 Jan 2019 19:28:06 +0100 Subject: [PATCH] Delete an unused private method. ... since bde568c (2007). --- lib/matplotlib/transforms.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/matplotlib/transforms.py b/lib/matplotlib/transforms.py index 424876d74fb9..c60fbdce3569 100644 --- a/lib/matplotlib/transforms.py +++ b/lib/matplotlib/transforms.py @@ -1728,14 +1728,6 @@ def __array__(self, *args, **kwargs): # optimises the access of the transform matrix vs the superclass return self.get_matrix() - @staticmethod - def _concat(a, b): - """ - Concatenates two transformation matrices (represented as numpy - arrays) together. - """ - return np.dot(b, a) - def __eq__(self, other): if getattr(other, "is_affine", False): return np.all(self.get_matrix() == other.get_matrix())