summaryrefslogtreecommitdiff
path: root/solenv/bin/modules/installer/windows/registry.pm
diff options
context:
space:
mode:
Diffstat (limited to 'solenv/bin/modules/installer/windows/registry.pm')
-rw-r--r--solenv/bin/modules/installer/windows/registry.pm22
1 files changed, 0 insertions, 22 deletions
diff --git a/solenv/bin/modules/installer/windows/registry.pm b/solenv/bin/modules/installer/windows/registry.pm
index ab0371b1ab32..29e0e8a47ee2 100644
--- a/solenv/bin/modules/installer/windows/registry.pm
+++ b/solenv/bin/modules/installer/windows/registry.pm
@@ -286,28 +286,6 @@ sub get_registry_value
}
##############################################################
-# Returning 64 bit value for registry table.
-##############################################################
-
-sub get_registry_val64
-{
- my ($registry, $allvariableshashref) = @_;
-
- my $value = "";
-
- if ( $registry->{'Val64'} ) { $value = $registry->{'Val64'}; }
-
- $value =~ s/\\\"/\"/g; # no more masquerading of '"'
- $value =~ s/\\\\\s*$/\\/g; # making "\\" at end of value to "\"
- $value =~ s/\<progpath\>/\[INSTALLLOCATION\]/;
- $value =~ s/\[INSTALLLOCATION\]\\/\[INSTALLLOCATION\]/; # removing "\" after "[INSTALLLOCATION]"
-
- if ( $value =~ /\%/ ) { $value = installer::worker::replace_variables_in_string($value, $allvariableshashref); }
-
- return $value;
-}
-
-##############################################################
# Returning component for registry table.
##############################################################