From a8db29399f3467f6431c6741167cf269a45673d5 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Thu, 22 Jan 2015 12:28:00 +0100 Subject: [PATCH] remove unneeded else block in if statement --- Library/OSRM_impl.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Library/OSRM_impl.cpp b/Library/OSRM_impl.cpp index 6b67a675d..b03cc5e2d 100644 --- a/Library/OSRM_impl.cpp +++ b/Library/OSRM_impl.cpp @@ -143,10 +143,7 @@ int OSRM_impl::RunQuery(RouteParameters &route_parameters, JSON::Object &json_re } return 200; } - else - { - return 400; - } + return 400; } // proxy code for compilation firewall