aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2017-04-26 08:10:33 +0200
committerPatrick Spek <p.spek@tyil.nl>2023-07-25 02:16:13 +0200
commitc559701a0ad000ecf3736eb64a4735ab2f2719a2 (patch)
treec6b8d3ceccfc8b2a3364866e64790d8274966c45 /lib
parent761b255cff8ad709c7292029417337d74eda9d87 (diff)
Initialize path and parser with empty string
Diffstat (limited to 'lib')
-rw-r--r--lib/Config.pm64
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Config.pm6 b/lib/Config.pm6
index 1d0d7db..ae78ea1 100644
--- a/lib/Config.pm6
+++ b/lib/Config.pm6
@@ -13,8 +13,8 @@ use Config::Parser;
class Config is export
{
has Hash $!content = {};
- has Str $!path;
- has Str $!parser;
+ has Str $!path = "";
+ has Str $!parser = "";
#| Clear the config.
method clear()