From e07be72dcf4c0d557798f67c9446c7043e24b0d9 Mon Sep 17 00:00:00 2001 From: Serdar Dogruyol Date: Sun, 10 Sep 2017 15:45:57 +0300 Subject: [PATCH] Remove ws_routes from route handler --- src/kemal/route_handler.cr | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/kemal/route_handler.cr b/src/kemal/route_handler.cr index 6e654c1..ce45256 100644 --- a/src/kemal/route_handler.cr +++ b/src/kemal/route_handler.cr @@ -6,13 +6,10 @@ module Kemal class RouteHandler include HTTP::Handler INSTANCE = new - property http_routes - property ws_routes def initialize @http_routes = Radix::Tree(Route).new - @ws_routes = Radix::Tree(String).new end def call(context : HTTP::Server::Context)