You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ch...@apache.org on 2013/01/21 17:26:58 UTC

svn commit: r1436458 - /airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/resources/UserWorkflowRegistryResource.java

Author: chathuri
Date: Mon Jan 21 16:26:58 2013
New Revision: 1436458

URL: http://svn.apache.org/viewvc?rev=1436458&view=rev
Log:
fixing AIRAVATA-730

Modified:
    airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/resources/UserWorkflowRegistryResource.java

Modified: airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/resources/UserWorkflowRegistryResource.java
URL: http://svn.apache.org/viewvc/airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/resources/UserWorkflowRegistryResource.java?rev=1436458&r1=1436457&r2=1436458&view=diff
==============================================================================
--- airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/resources/UserWorkflowRegistryResource.java (original)
+++ airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/resources/UserWorkflowRegistryResource.java Mon Jan 21 16:26:58 2013
@@ -202,15 +202,9 @@ public class UserWorkflowRegistryResourc
                 workflowsModels.add(workflow);
             }
             workflowList.setWorkflowList(workflowsModels);
-            if (workflows.size() != 0) {
-                Response.ResponseBuilder builder = Response.status(Response.Status.OK);
-                builder.entity(workflowList);
-                return builder.build();
-            } else {
-                Response.ResponseBuilder builder = Response.status(Response.Status.NO_CONTENT);
-                return builder.build();
-            }
-
+            Response.ResponseBuilder builder = Response.status(Response.Status.OK);
+            builder.entity(workflowList);
+            return builder.build();
         } catch (Throwable e) {
             return WebAppUtil.reportInternalServerError(ResourcePathConstants.UserWFConstants.GET_WORKFLOWS, e);
         } finally {