Skip to content

Commit fa2a3dd

Browse files
Merge pull request cribbstechnologies#6 from Enalmada/patch-2
Remove print statements
2 parents 0b7df0e + 86155e2 commit fa2a3dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/cribbstechnologies/clients/mandrill/request/MandrillRESTRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ private BaseMandrillResponse performPostRequest(BaseMandrillRequest request, Str
5353

5454
StringBuffer sb = new StringBuffer();
5555
String output;
56-
System.out.println("Output from Server .... \n");
56+
//System.out.println("Output from Server .... \n");
5757
while ((output = br.readLine()) != null) {
5858
sb.append(output);
59-
System.out.println(output);
59+
//System.out.println(output);
6060
}
6161

6262
String responseString = sb.toString();
@@ -121,4 +121,4 @@ public void setObjectMapper(ObjectMapper objectMapper) {
121121
}
122122

123123

124-
}
124+
}

0 commit comments

Comments
 (0)