aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreater <hello@eaterofco.de>2017-07-28 21:06:43 +0200
committerGitHub <noreply@github.com>2017-07-28 21:06:43 +0200
commit07e6934a7fbeeef4d41026db05db3eeaf3d95b02 (patch)
tree9180660b00d8460aa729f43fa057d1ee19235848
parentedca625ad13b2fdff26491d68361cb8c0febfe0f (diff)
parentae852956594640575487fddd144e29ee18b9c741 (diff)
Merge pull request #2 from chsanch/dev
Remove the print of the path when reading a file
-rw-r--r--lib/Config/Parser/yaml.pm61
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);
}
}