Skip to content

Commit ff684a4

Browse files
committed
removing prints.
1 parent f58e56d commit ff684a4

2 files changed

Lines changed: 0 additions & 7 deletions

File tree

src/main/java/com/ibm/ml/ilog/utils/HttpUtils.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,6 @@ private CloseableHttpClient createHttpsClient() throws IloException {
319319
}
320320

321321
public void close() {
322-
System.out.println("Closing");
323322
if (timer != null) {
324323
timer.cancel();
325324
timer.purge();
@@ -419,8 +418,6 @@ public String doPost(String host, String targetUrl, Map<String, String> params,
419418

420419
public String doGet(String host, String targetUrl, Map<String, String> params, Map<String, String> headers) throws IloException {
421420
String ret = doCall(host, targetUrl, params, headers, null, GET);
422-
if (targetUrl.contains("jobs"))
423-
System.out.println(ret);
424421
return ret;
425422
}
426423

src/main/java/com/ibm/ml/ilog/v4/Connector.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -458,8 +458,6 @@ public Job createJob(String deployment_id,
458458
solve_parameters.put("oaas.logTailEnabled", "false");
459459
if (custom != null) {
460460
for (Map.Entry<String, String> set : ((HashMap<String, String>)custom).entrySet()) {
461-
// Printing all elements of a Map
462-
System.out.println(set.getKey() + " = " + set.getValue());
463461
solve_parameters.put(set.getKey(), set.getValue());
464462
}
465463
}
@@ -665,8 +663,6 @@ public String createNewModel(String modelName, Runtime runtime, ModelType type,
665663
JSONObject jcustom = new JSONObject();
666664
JSONObject decision_optimization = new JSONObject();
667665
for (Map.Entry<String, String> set : ((HashMap<String, String>)custom).entrySet()) {
668-
// Printing all elements of a Map
669-
System.out.println(set.getKey() + " = " + set.getValue());
670666
decision_optimization.put(set.getKey(), set.getValue());
671667
}
672668
jcustom.put("decision_optimization", decision_optimization);

0 commit comments

Comments
 (0)