[OLINGO-350] Delete printStackTrace in test

This commit is contained in:
Christian Amend 2014-08-29 15:11:35 +02:00
parent a0f8f356b2
commit a30d2f8214
1 changed files with 0 additions and 1 deletions

View File

@ -98,7 +98,6 @@ public class ODataHandler {
ODataServerError serverError = ODataExceptionHelper.createServerErrorObject(e); ODataServerError serverError = ODataExceptionHelper.createServerErrorObject(e);
handleException(request, response, serverError, requestedContentType); handleException(request, response, serverError, requestedContentType);
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace();
ODataServerError serverError = ODataExceptionHelper.createServerErrorObject(e); ODataServerError serverError = ODataExceptionHelper.createServerErrorObject(e);
handleException(request, response, serverError, requestedContentType); handleException(request, response, serverError, requestedContentType);
} }