From e5323dd2081fd8bb97a9d67d5b7b417fa8d74213 Mon Sep 17 00:00:00 2001 From: Berend de Boer Date: Mon, 19 Mar 2012 09:32:00 +1300 Subject: [PATCH] Minor code cleanup/typo fix. --- .../wsf_extension/src/wsf_resource_handler_helper.e | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/library/server/wsf_extension/src/wsf_resource_handler_helper.e b/library/server/wsf_extension/src/wsf_resource_handler_helper.e index 22a8f009..d5050619 100644 --- a/library/server/wsf_extension/src/wsf_resource_handler_helper.e +++ b/library/server/wsf_extension/src/wsf_resource_handler_helper.e @@ -35,8 +35,8 @@ feature -- Execute template --| Eventually handle other methods... execute_extension_method (ctx, req, res) end - rescue - handle_internal_server_error ("Internal Server Error", ctx, req, res) + -- rescue + -- handle_internal_server_error ("Internal Server Error", ctx, req, res) end feature -- Method Post @@ -88,7 +88,7 @@ feature -- Method Get do_get (ctx: C;req: WSF_REQUEST; res: WSF_RESPONSE) do - handle_not_implemented ("Method HEAD not implemented", ctx, req, res) + handle_not_implemented ("Method GET not implemented", ctx, req, res) end feature -- Method DELETE @@ -100,7 +100,7 @@ feature -- Method DELETE do_delete (ctx: C; req: WSF_REQUEST; res: WSF_RESPONSE) do - handle_not_implemented ("Method DELETE not implemented", ctx, req, res) + handle_not_implemented ("Method DELETE not implemented", ctx, req, res) end feature -- Method CONNECT @@ -112,7 +112,7 @@ feature -- Method CONNECT do_connect (ctx: C;req: WSF_REQUEST; res: WSF_RESPONSE) do - handle_not_implemented ("Method CONNECT not implemented", ctx, req, res) + handle_not_implemented ("Method CONNECT not implemented", ctx, req, res) end feature -- Method HEAD