From 8cc5724b273133ce645589b7c7e0cacd60276360 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Wed, 26 Apr 2017 08:10:33 +0200 Subject: Initialize path and parser with empty string --- lib/Config.pm6 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') 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() -- cgit v1.1