Commit 6ec3972a by Suma Shivaprasad

removed sys out

parent 002a43ec
...@@ -297,7 +297,6 @@ public class MetadataServiceClient { ...@@ -297,7 +297,6 @@ public class MetadataServiceClient {
? Response.Status.CREATED : Response.Status.OK; ? Response.Status.CREATED : Response.Status.OK;
if (clientResponse.getStatus() == expectedStatus.getStatusCode()) { if (clientResponse.getStatus() == expectedStatus.getStatusCode()) {
String responseAsString = clientResponse.getEntity(String.class); String responseAsString = clientResponse.getEntity(String.class);
System.out.println("response : " + responseAsString);
try { try {
return new JSONObject(responseAsString); return new JSONObject(responseAsString);
} catch (JSONException e) { } catch (JSONException e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment