Update src/lib/Hydra/Helper/Escape.pm: fewer ()s

Co-authored-by: Stig <stig@stig.io>
This commit is contained in:
Graham Christensen 2021-03-18 16:27:21 -04:00 committed by GitHub
parent 019aef3d41
commit 6b7ca554f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,5 +17,5 @@ sub escapeString {
sub escapeAttributePath {
my ($s) = @_;
return join(".", map( { escapeString($_) } Hydra::Helper::AttributeSet::splitPath($s)));
return join ".", map { escapeString($_) } Hydra::Helper::AttributeSet::splitPath($s);
}