summaryrefslogtreecommitdiff
path: root/solenv/bin/modules/installer/converter.pm
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-08-14 23:30:56 +0200
committerTim Retout <tim@retout.co.uk>2012-08-15 08:45:37 +0100
commitfe9f8c1800d8729fd1f07039c952f95ecefb560c (patch)
treec020a950e3fc464f771fc06fedeb538c78b6e324 /solenv/bin/modules/installer/converter.pm
parentab03e87741f25d3a5532a75c3dc59b5556a2bb24 (diff)
solenv: remove unused functions
Change-Id: I8e361beb954c742ddcecde4a4ba2a4ae57057c39
Diffstat (limited to 'solenv/bin/modules/installer/converter.pm')
-rw-r--r--solenv/bin/modules/installer/converter.pm19
1 files changed, 0 insertions, 19 deletions
diff --git a/solenv/bin/modules/installer/converter.pm b/solenv/bin/modules/installer/converter.pm
index a141b501db5f..a80426e4ea0c 100644
--- a/solenv/bin/modules/installer/converter.pm
+++ b/solenv/bin/modules/installer/converter.pm
@@ -104,25 +104,6 @@ sub convert_whitespace_stringlist_into_array
}
#############################################################################
-# Converting an array into a comma separated string
-#############################################################################
-
-sub convert_array_to_comma_separated_string
-{
- my ( $arrayref ) = @_;
-
- my $newstring;
- for (@{$arrayref}) {
- my $tmp = $_;
- $tmp =~ s/\s+$//;
- $newstring .= "$tmp,";
- }
- $newstring =~ s/\,$//;
-
- return $newstring;
-}
-
-#############################################################################
# Converting an array into a space separated string
#############################################################################