Removed System.out

This commit is contained in:
Sven Kubiak 2018-10-09 07:47:59 +02:00
parent e3f5d42bd1
commit 8fd5fd5a8a
2 changed files with 1 additions and 2 deletions

View File

@ -308,8 +308,6 @@ public class JPushover {
body.put(Constants.SOUND.toString(), this.pushoverSound.toString()); body.put(Constants.SOUND.toString(), this.pushoverSound.toString());
body.put(Constants.HTML.toString(), this.pushoverHtml ? "1" : "0"); body.put(Constants.HTML.toString(), this.pushoverHtml ? "1" : "0");
System.out.println(toJson(body));
var httpResponse = getResponse(toJson(body), Constants.MESSAGES_URL.toString()); var httpResponse = getResponse(toJson(body), Constants.MESSAGES_URL.toString());
var jPushoverResponse = new JPushoverResponse().isSuccessful(false); var jPushoverResponse = new JPushoverResponse().isSuccessful(false);

View File

@ -1,4 +1,5 @@
module jpushover { module jpushover {
requires java.net.http; requires java.net.http;
exports de.svenkubiak.jpushover; exports de.svenkubiak.jpushover;
exports de.svenkubiak.jpushover.enums;
} }