diff options
author | eater <hello@eaterofco.de> | 2017-07-28 21:06:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-28 21:06:43 +0200 |
commit | 07e6934a7fbeeef4d41026db05db3eeaf3d95b02 (patch) | |
tree | 9180660b00d8460aa729f43fa057d1ee19235848 | |
parent | edca625ad13b2fdff26491d68361cb8c0febfe0f (diff) | |
parent | ae852956594640575487fddd144e29ee18b9c741 (diff) | |
download | config-parser-yaml-07e6934a7fbeeef4d41026db05db3eeaf3d95b02.tar.gz config-parser-yaml-07e6934a7fbeeef4d41026db05db3eeaf3d95b02.tar.bz2 |
Merge pull request #2 from chsanch/dev
Remove the print of the path when reading a file
-rw-r--r-- | lib/Config/Parser/yaml.pm6 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Config/Parser/yaml.pm6 b/lib/Config/Parser/yaml.pm6 index 366368f..c0c194e 100644 --- a/lib/Config/Parser/yaml.pm6 +++ b/lib/Config/Parser/yaml.pm6 @@ -9,7 +9,6 @@ class Config::Parser::yaml is Config::Parser { method read(Str $path --> Hash) { - say $path; load-yaml(slurp $path); } } |