Skip to content

Commit 84a405a

Browse files
committed
Fix review comments on PR: #2
1 parent 3df3bd3 commit 84a405a

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/main/java/com/microsoft/graph/content/MSBatchRequestContent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ private Map<String, String> getBatchRequestMapFromRequestStep(MSBatchRequestStep
9393
contentmap.put("body", body);
9494
}
9595
catch(Exception e) {
96+
e.printStackTrace();
9697
}
9798
}
98-
9999
List<String> arrayOfDependsOnIds = batchRequestStep.getArrayOfDependsOnIds();
100100
if(arrayOfDependsOnIds != null) {
101101
contentmap.put("dependsOn", JSONValue.toJSONString(arrayOfDependsOnIds));

src/main/java/com/microsoft/graph/content/MSBatchResponseContent.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public MSBatchResponseContent(String batchResponseData ) {
2121
batchResponseObj = (JSONObject) parser.parse(batchResponseData);
2222
}
2323
catch(ParseException e) {
24+
e.printStackTrace();
2425
}
2526
}
2627

src/main/java/com/microsoft/graph/httpcore/AuthenticationHandler.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ public AuthenticationHandler(IAuthenticationProvider authProvider) {
1717

1818
@Override
1919
public void process(HttpRequest request, HttpContext context) throws HttpException, IOException {
20-
// TODO Auto-generated method stub
2120
authProvider.authenticateRequest(request);
2221
}
2322

0 commit comments

Comments
 (0)