From a8645afbdb8c8d376ff3ca510771c84c4d43cd8a Mon Sep 17 00:00:00 2001 From: aUniqueUser Date: Sat, 22 Feb 2020 21:09:36 -0500 Subject: [PATCH] Revert "mfw" This reverts commit 25b85f17a30bf71133fdcefebc2b693576d528f1. --- src/main/java/baritone/utils/NotificationHelper.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/main/java/baritone/utils/NotificationHelper.java b/src/main/java/baritone/utils/NotificationHelper.java index 3e7b22ae..76cd5b1c 100644 --- a/src/main/java/baritone/utils/NotificationHelper.java +++ b/src/main/java/baritone/utils/NotificationHelper.java @@ -60,11 +60,9 @@ public class NotificationHelper { } } - /* - * The only way to display notifications on linux is to use the java-gnome library, - * or send notify-send to shell with a ProcessBuilder. Unfortunately the java-gnome - * library is licenced under the GPL, see (https://en.wikipedia.org/wiki/Java-gnome) - */ + // The only way to display notifications on linux is to use the java-gnome library, + // or send notify-send to shell with a ProcessBuilder. Unfortunately the java-gnome + // library is licenced under the GPL, see (https://en.wikipedia.org/wiki/Java-gnome) public static void linux(String text) { ProcessBuilder processBuilder = new ProcessBuilder(); processBuilder.command("notify-send", "-a", "Baritone", text);