Commit d38e2009 authored by Robert Butora's avatar Robert Butora
Browse files

bugfix for symptom: no VOTable returned if no datasets found; however should return empty VOTable

parent e70e657f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ public class FormatResponseFilter implements Filter

         String[] pubdidArr = responseWrapper.getPubdidArr();

         if ((pubdidArr != null) && (pubdidArr.length > 0))
         if (pubdidArr != null)
         {
            PrintWriter responseWriter = ((HttpServletResponse)response).getWriter();

@@ -81,7 +81,7 @@ public class FormatResponseFilter implements Filter
         }
         else
         {
            LOGGER.fine("SearchServlet returned no ID's.");
            LOGGER.warning("SearchServlet returned null pubdidArr.");
         }
      }
      catch(MultiValuedParamNotSupported ex)
+1 −1

File changed.

Contains only whitespace changes.