(Robert Tansley)

- now checks if context is null before aborting (before, would get NullPointerException if DB connection failed)


git-svn-id: http://scm.dspace.org/svn/repo/trunk@1704 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Robert Tansley
2006-12-05 21:13:16 +00:00
parent b7620af591
commit 700d46a943

View File

@@ -92,7 +92,11 @@
JSPManager.showInternalError(request, response);
}
finally {
context.abort();
finally
{
if (context != null)
{
context.abort();
}
}
%>