add missing return statements in getSystem/getPersonalMountPoints

This commit is contained in:
Robin Appelman 2015-08-19 16:26:33 +02:00
parent 5fd36d017e
commit 273c776eb7
1 changed files with 4 additions and 0 deletions

View File

@ -165,6 +165,8 @@ class OC_Mount_Config {
foreach ($service->getAllStorages() as $storage) {
$mountPoints[] = self::prepareMountPointEntry($storage, false);
}
return $mountPoints;
}
/**
@ -181,6 +183,8 @@ class OC_Mount_Config {
foreach ($service->getAllStorages() as $storage) {
$mountPoints[] = self::prepareMountPointEntry($storage, true);
}
return $mountPoints;
}
/**