mirror of
https://github.com/Winds-Studio/Leaf.git
synced 2025-12-20 23:49:31 +00:00
18 lines
785 B
Diff
18 lines
785 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Dreeam <61569423+Dreeam-qwq@users.noreply.github.com>
|
|
Date: Thu, 2 May 2024 20:21:29 -0400
|
|
Subject: [PATCH] Ignore terminal provider warning
|
|
|
|
|
|
diff --git a/src/main/java/org/dreeam/leaf/LeafBootstrap.java b/src/main/java/org/dreeam/leaf/LeafBootstrap.java
|
|
index 316654051b80ac0fd62cf3b7a0e1b91010ec24b7..9a9bd633c6ed1b2231d36ef7a285a1f1463ccee4 100644
|
|
--- a/src/main/java/org/dreeam/leaf/LeafBootstrap.java
|
|
+++ b/src/main/java/org/dreeam/leaf/LeafBootstrap.java
|
|
@@ -12,5 +12,6 @@ public class LeafBootstrap {
|
|
}
|
|
|
|
private static void runPreBootTasks() {
|
|
+ System.setProperty("org.jline.terminal.disableDeprecatedProviderWarning", "true"); // Leaf - Ignore terminal provider warning
|
|
}
|
|
}
|