mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
Removing unnecessary spammy debug output (this code works now... honest\!)
This commit is contained in:
parent
91d903d8df
commit
b6d1378fa1
@ -67,14 +67,12 @@ sub splitArguments {
|
||||
my $value = $2;
|
||||
# decode the strings
|
||||
foreach my $string ($name, $value) {
|
||||
$self->dump(9, "decoding '$string'");
|
||||
$string =~ s/% # a percent symbol
|
||||
( # followed by
|
||||
[0-9A-Fa-f]{2} # 2 hexidecimal characters
|
||||
) # which we shall put in $1
|
||||
/chr(hex($1)) # and convert back into a character
|
||||
/egox; # (evaluate, globally, optimised, with comments)
|
||||
$self->dump(9, "to '$string'");
|
||||
}
|
||||
$self->addArgument($name, $value);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user