blob: 5c25854765616569aa5c7943ac07cb8b88371c03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
package cc.polyfrost.oneconfig.utils.notifications;
/**
* @deprecated Reserved for future use, not implemented yet.
*/
@Deprecated
public final class Notifications {
public static final Notifications INSTANCE = new Notifications();
private Notifications() {
}
public void send(String title, String message) {
}
public void send(String title, String message, Runnable action) {
}
public void send(String title, String message, float duration) {
}
public void send(String title, String message, float duration, Runnable action) {
}
public void send(String title, String message, float duration, Runnable action, Runnable onClose) {
}
}
|