From b3019c02f7be5e596aadd8d9c22e48ab62fc69e6 Mon Sep 17 00:00:00 2001 From: David Lehman Date: Mon, 18 Apr 2011 14:11:06 -0500 Subject: Remove unused Platform.validBootLoaderPartSize method. --- pyanaconda/platform.py | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'pyanaconda/platform.py') diff --git a/pyanaconda/platform.py b/pyanaconda/platform.py index 5fdb73da5..e28c680c1 100644 --- a/pyanaconda/platform.py +++ b/pyanaconda/platform.py @@ -174,17 +174,6 @@ class Platform(object): return [PartSpec(mountpoint="/boot", fstype=self.defaultBootFSType, size=500, weight=self.weight(mountpoint="/boot"))] - def validBootLoaderPartSize(self, size): - """ Is the given size (in MB) acceptable for a bootloader device? """ - if not isinstance(size, int) and not isinstance(size, float): - return False - - return ((self.bootloader.stage1_device_min_size is None or - size >= self.bootloader.stage1_device_min_size) - and - (self.bootloader.stage1_device_max_size is None or - size <= self.bootloader.stage1_device_max_size)) - def weight(self, fstype=None, mountpoint=None): """ Given an fstype (as a string) or a mountpoint, return an integer for the base sorting weight. This is used to modify the sort -- cgit