Skip to content
Snippets Groups Projects
Commit 3773b184 authored by cramakri's avatar cramakri
Browse files

BIS-407 SP-634 : Fixed remaining broken tests.

SVN: 28973
parent e982b9a6
No related branches found
No related tags found
No related merge requests found
......@@ -149,6 +149,10 @@ public class RequestHandlerDispatcher
protected RequestType tryRequestType(Map<String, Object> parameters)
{
String requestKey = (String) parameters.get("requestKey");
if (null == requestKey)
{
return null;
}
RequestType requestType;
try
{
......@@ -162,6 +166,10 @@ public class RequestHandlerDispatcher
protected IRequestHandlerFactory getHandlerFactory(RequestType requestType)
{
if (null == requestType)
{
return emptyDataRequestHandlerFactory;
}
IRequestHandlerFactory handlerFactory;
switch (requestType)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment