summaryrefslogtreecommitdiffstats
path: root/partitioning.py
diff options
context:
space:
mode:
Diffstat (limited to 'partitioning.py')
-rw-r--r--partitioning.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/partitioning.py b/partitioning.py
index 4db9ad512..99b89119f 100644
--- a/partitioning.py
+++ b/partitioning.py
@@ -845,20 +845,6 @@ class Partitions:
return 1
return 0
- def getMigratableRequests(self, thefsset):
- retval = []
- for request in self.requests:
- if request.type != REQUEST_PREEXIST:
- continue
-
- if request.origfstype:
- if request.origfstype.isMigratable():
- entry = thefsset.getEntryByDeviceName(request.device)
- if entry:
- retval.append(request)
-
- return retval
-
# return name of boot mount point in current requests
def getBootableRequest(self):
bootreq = None