8000 Merge pull request #13111 from anntzer/unused-method · matplotlib/matplotlib@0c35833 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0c35833

Browse files
authored
Merge pull request #13111 from anntzer/unused-method
Delete an unused private method.
2 parents ddde7e8 + a9d6d2b commit 0c35833

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

lib/matplotlib/transforms.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1728,14 +1728,6 @@ def __array__(self, *args, **kwargs):
17281728
# optimises the access of the transform matrix vs the superclass
17291729
return self.get_matrix()
17301730

1731-
@staticmethod
1732-
def _concat(a, b):
1733-
"""
1734-
Concatenates two transformation matrices (represented as numpy
1735-
arrays) together.
1736-
"""
1737-
return np.dot(b, a)
1738-
17391731
def __eq__(self, other):
17401732
if getattr(other, "is_affine", False):
17411733
return np.all(self.get_matrix() == other.get_matrix())

0 commit comments

Comments
 (0)
0