From b79071d96a69c5e37746f9cb594fe8ddd17d860c Mon Sep 17 00:00:00 2001 From: sillymoose Date: Fri, 21 Nov 2014 20:44:03 -0500 Subject: [PATCH] removed redundant(?) methods hash. gave warnings --- lib/HTTP/Server/Simple.pm6 | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/HTTP/Server/Simple.pm6 b/lib/HTTP/Server/Simple.pm6 index 9889bdc..9233167 100644 --- a/lib/HTTP/Server/Simple.pm6 +++ b/lib/HTTP/Server/Simple.pm6 @@ -21,7 +21,6 @@ role HTTP::Server::Simple { } method new ( $port=8080 ) { - my %methods = self.^methods Z 1..*; # convert list to hash pairs self.bless( self.CREATE(), # self might also be a subclass port => $port, host => self.lookup_localhost,