From 6811d37fab1b839c654189687fc9aeac7eeba85b Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Fri, 15 Sep 2023 19:01:19 +0200 Subject: [PATCH] Remove unused Axis private init helpers. These were deprecated in c3f87d4 and later made unused, but not removed. --- lib/matplotlib/axis.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/lib/matplotlib/axis.py b/lib/matplotlib/axis.py index 56d4e6b77dc6..4c9bc8f064fe 100644 --- a/lib/matplotlib/axis.py +++ b/lib/matplotlib/axis.py @@ -265,21 +265,6 @@ def get_pad(self): """Get the value of the tick label pad in points.""" return self._base_pad - def _get_text1(self): - """Get the default Text 1 instance.""" - - def _get_text2(self): - """Get the default Text 2 instance.""" - - def _get_tick1line(self): - """Get the default `.Line2D` instance for tick1.""" - - def _get_tick2line(self): - """Get the default `.Line2D` instance for tick2.""" - - def _get_gridline(self): - """Get the default grid `.Line2D` instance for this tick.""" - def get_loc(self): """Return the tick location (data coords) as a scalar.""" return self._loc