summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/OpenSLX/Basics.pm11
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/OpenSLX/Basics.pm b/lib/OpenSLX/Basics.pm
index d26cf195..6c4fa87e 100644
--- a/lib/OpenSLX/Basics.pm
+++ b/lib/OpenSLX/Basics.pm
@@ -31,12 +31,11 @@ $VERSION = 1.01;
&checkFlags
&instantiateClass
&addCleanupFunction &removeCleanupFunction
- &glob
);
our (%openslxConfig, %cmdlineConfig, %openslxPath);
-use subs qw(die warn glob);
+use subs qw(die warn);
use open ':utf8';
@@ -470,14 +469,6 @@ sub _doThrowOrWarn
}
# ------------------------------------------------------------------------------
-sub glob
-{
- return map {
- decode('utf8', $_);
- } (File::Glob::bsd_glob(@_));
-}
-
-# ------------------------------------------------------------------------------
sub checkFlags
{
my $flags = shift || confess 'need to pass in flags-hashref!';