Removed System.out
This commit is contained in:
parent
e3f5d42bd1
commit
8fd5fd5a8a
@ -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);
|
||||||
|
@ -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;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user