summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/type.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-06-03 08:36:14 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-06-03 08:36:14 +0000
commite1fb1756286b5da5c3e8f89f41de02292f86ddea (patch)
treea593f23b9eab5147128e87abb7d16fd70da5d650 /perl-install/fs/type.pm
parent5023a9309e1bb6419cc6b718efb6bd4e82a3d634 (diff)
downloaddrakx-e1fb1756286b5da5c3e8f89f41de02292f86ddea.tar
drakx-e1fb1756286b5da5c3e8f89f41de02292f86ddea.tar.gz
drakx-e1fb1756286b5da5c3e8f89f41de02292f86ddea.tar.bz2
drakx-e1fb1756286b5da5c3e8f89f41de02292f86ddea.tar.xz
drakx-e1fb1756286b5da5c3e8f89f41de02292f86ddea.zip
remove unused code
Diffstat (limited to 'perl-install/fs/type.pm')
-rw-r--r--perl-install/fs/type.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index 5fcc7facc..1c72f6160 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -8,7 +8,7 @@ use common;
our @ISA = qw(Exporter);
our @EXPORT = qw(
- isEmpty isExtended isTrueLocalFS isTrueFS isDos isSwap isOtherAvailableFS isRawLVM isRawRAID isRAID isLVM isMountableRW isNonMountable isPartOfLVM isPartOfRAID isPartOfLoopback isLoopback isMounted isBusy isSpecial isApple isAppleBootstrap isWholedisk isHiddenMacPart isFat_or_NTFS
+ isEmpty isExtended isTrueLocalFS isTrueFS isDos isSwap isOtherAvailableFS isRawLVM isRawRAID isRAID isLVM isMountableRW isNonMountable isPartOfLVM isPartOfRAID isPartOfLoopback isLoopback isMounted isBusy isSpecial isApple isAppleBootstrap isWholedisk isFat_or_NTFS
maybeFormatted set_isFormatted
);
@@ -321,7 +321,6 @@ sub isDos { arch() !~ /^sparc/ && ${{ 1 => 1, 4 => 1, 6 => 1 }}{$_[0]{pt_type}}
sub isFat_or_NTFS { member($_[0]{fs_type}, 'vfat', 'ntfs') }
sub isApple { $_[0]{pt_type} == 0x401 && defined $_[0]{isDriver} }
sub isAppleBootstrap { $_[0]{pt_type} == 0x401 && defined $_[0]{isBoot} }
-sub isHiddenMacPart { defined $_[0]{isMap} }
sub isTrueFS { isTrueLocalFS($_[0]) || member($_[0]{fs_type}, qw(nfs)) }
sub isTrueLocalFS { member($_[0]{fs_type}, true_local_fs_types()) }