@@ -8,7 +8,7 @@ expose isRunning
8
8
9
9
diff --git a/src/main/java/co/aikar/timings/FullServerTickHandler.java b/src/main/java/co/aikar/timings/FullServerTickHandler.java
10
10
new file mode 100644
11
- index 0000000000000000000000000000000000000000..3e747abde6fefae90f1c15cb00158bc5303cbe50
11
+ index 0000000000000000000000000000000000000000..73b125979e2f2dfd13cbf689a90b29cc68a36e09
12
12
--- /dev/null
13
13
+++ b/src/main/java/co/aikar/timings/FullServerTickHandler.java
14
14
@@ -0,0 +1,89 @@
@@ -94,7 +94,7 @@ index 0000000000000000000000000000000000000000..3e747abde6fefae90f1c15cb00158bc5
94
94
+ TimingsManager.HISTORY.add(new TimingHistory());
95
95
+ TimingsManager.resetTimings();
96
96
+ }
97
- + Bukkit.getUnsafe().reportTimings();
97
+ + // Bukkit.getUnsafe().reportTimings();
98
98
+ }
99
99
+
100
100
+ boolean isViolated() {
@@ -1275,10 +1275,10 @@ index 0000000000000000000000000000000000000000..df142a89b8c43acb81eb383eac0ef048
1275
1275
+ }
1276
1276
diff --git a/src/main/java/co/aikar/timings/Timings.java b/src/main/java/co/aikar/timings/Timings.java
1277
1277
new file mode 100644
1278
- index 0000000000000000000000000000000000000000..e81d0bc309de877ed2b5da6122f55c162e9b5f10
1278
+ index 0000000000000000000000000000000000000000..95b7cdf0677ef71e6885fa78aa5c75bb500f5f53
1279
1279
--- /dev/null
1280
1280
+++ b/src/main/java/co/aikar/timings/Timings.java
1281
- @@ -0,0 +1,331 @@
1281
+ @@ -0,0 +1,325 @@
1282
1282
+ /*
1283
1283
+ * This file is licensed under the MIT License (MIT).
1284
1284
+ *
@@ -1426,22 +1426,16 @@ index 0000000000000000000000000000000000000000..e81d0bc309de877ed2b5da6122f55c16
1426
1426
+ * @param enabled Should timings be reported
1427
1427
+ */
1428
1428
+ public static void setTimingsEnabled(boolean enabled) {
1429
- + timingsEnabled = enabled;
1430
- + warnAboutDeprecationOnEnable();
1431
- + reset();
1432
- + }
1433
- +
1434
- + private static void warnAboutDeprecationOnEnable() {
1435
- + if (timingsEnabled && !warnedAboutDeprecationOnEnable) {
1436
- + Bukkit.getLogger().warning(PlainTextComponentSerializer.plainText().serialize(deprecationMessage()));
1429
+ + if (enabled && !warnedAboutDeprecationOnEnable) {
1430
+ + Bukkit.getLogger().severe(PlainTextComponentSerializer.plainText().serialize(deprecationMessage()));
1437
1431
+ warnedAboutDeprecationOnEnable = true;
1438
1432
+ }
1439
1433
+ }
1440
1434
+
1441
1435
+ public static Component deprecationMessage() {
1442
1436
+ return Component.text()
1443
1437
+ .color(TextColor.color(0xffc93a))
1444
- + .append(Component.text("[!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future ."))
1438
+ + .append(Component.text("[!] The timings profiler is in no-op mode and will be fully removed in a later update ."))
1445
1439
+ .append(Component.newline())
1446
1440
+ .append(Component.text(" We recommend migrating to the spark profiler."))
1447
1441
+ .append(Component.newline())
@@ -1612,10 +1606,10 @@ index 0000000000000000000000000000000000000000..e81d0bc309de877ed2b5da6122f55c16
1612
1606
+
1613
1607
diff --git a/src/main/java/co/aikar/timings/TimingsCommand.java b/src/main/java/co/aikar/timings/TimingsCommand.java
1614
1608
new file mode 100644
1615
- index 0000000000000000000000000000000000000000..95d87c9dbf2b237787294dfbe7fed87a36e6dedf
1609
+ index 0000000000000000000000000000000000000000..b83e5ff7ada8771fdf27ba9807c77ba6a4ce12da
1616
1610
--- /dev/null
1617
1611
+++ b/src/main/java/co/aikar/timings/TimingsCommand.java
1618
- @@ -0,0 +1,126 @@
1612
+ @@ -0,0 +1,127 @@
1619
1613
+ /*
1620
1614
+ * This file is licensed under the MIT License (MIT).
1621
1615
+ *
@@ -1674,8 +1668,9 @@ index 0000000000000000000000000000000000000000..95d87c9dbf2b237787294dfbe7fed87a
1674
1668
+ if (!testPermission(sender)) {
1675
1669
+ return true;
1676
1670
+ }
1677
- + if (false ) {
1671
+ + if (true ) {
1678
1672
+ sender.sendMessage(Timings.deprecationMessage());
1673
+ + return true;
1679
1674
+ }
1680
1675
+ if (args.length < 1) {
1681
1676
+ sender.sendMessage(text("Usage: " + this.usageMessage, NamedTextColor.RED));
@@ -2906,35 +2901,6 @@ index fa6ad07214d5e38866bf6bee9139c6c938e9f51a..57c9b560c77a56588870598acb543469
2906
2901
/**
2907
2902
* Sends the component to the player
2908
2903
*
2909
- diff --git a/src/main/java/org/bukkit/UnsafeValues.java b/src/main/java/org/bukkit/UnsafeValues.java
2910
- index d8b346fe0f9634218954fe818d53272a0896af9c..12ef99f1c91b92a133611c5f5aeaaeebd02ce232 100644
2911
- --- a/src/main/java/org/bukkit/UnsafeValues.java
2912
- +++ b/src/main/java/org/bukkit/UnsafeValues.java
2913
- @@ -40,6 +40,11 @@ public interface UnsafeValues {
2914
- net.kyori.adventure.text.Component resolveWithContext(net.kyori.adventure.text.Component component, org.bukkit.command.CommandSender context, org.bukkit.entity.Entity scoreboardSubject, boolean bypassPermissions) throws java.io.IOException;
2915
- // Paper end
2916
-
2917
- + /**
2918
- + * @deprecated Timings will be removed in the future
2919
- + */
2920
- + @Deprecated(forRemoval = true)
2921
- + void reportTimings(); // Paper
2922
- Material toLegacy(Material material);
2923
-
2924
- Material fromLegacy(Material material);
2925
- @@ -151,4 +156,12 @@ public interface UnsafeValues {
2926
- return !Bukkit.getUnsafe().isSupportedApiVersion(plugin.getDescription().getAPIVersion());
2927
- }
2928
- // Paper end
2929
- +
2930
- + // Paper start
2931
- + /**
2932
- + * @deprecated Timings will be removed in the future
2933
- + */
2934
- + @Deprecated(forRemoval = true)
2935
- + String getTimingsServerName();
2936
- + // Paper end
2937
- }
2938
2904
diff --git a/src/main/java/org/bukkit/command/BufferedCommandSender.java b/src/main/java/org/bukkit/command/BufferedCommandSender.java
2939
2905
new file mode 100644
2940
2906
index 0000000000000000000000000000000000000000..45ed63797b13e114bf3795c80a6c3967d8eb2351
@@ -3508,7 +3474,7 @@ index 84befa1e5123038b80e0734622a5174634f5a982..22de066aef71ad2cf135d5b6f5d6f224
3508
3474
3509
3475
@NotNull
3510
3476
diff --git a/src/main/java/org/bukkit/plugin/SimplePluginManager.java b/src/main/java/org/bukkit/plugin/SimplePluginManager.java
3511
- index 46c7be5fa69f13900860b9944523beea16f2409b..6018574cd15b802833613beefa88da15dc2730cb 100644
3477
+ index 46c7be5fa69f13900860b9944523beea16f2409b..f97669c8b58bc287fc289eeb098836ae314b053a 100644
3512
3478
--- a/src/main/java/org/bukkit/plugin/SimplePluginManager.java
3513
3479
+++ b/src/main/java/org/bukkit/plugin/SimplePluginManager.java
3514
3480
@@ -381,7 +381,6 @@ public final class SimplePluginManager implements PluginManager {
@@ -3559,9 +3525,11 @@ index 46c7be5fa69f13900860b9944523beea16f2409b..6018574cd15b802833613beefa88da15
3559
3525
}
3560
3526
3561
3527
/**
3562
- @@ -933,7 +933,7 @@ public final class SimplePluginManager implements PluginManager {
3528
+ @@ -932,8 +932,9 @@ public final class SimplePluginManager implements PluginManager {
3529
+ *
3563
3530
* @param use True if per event timing code should be used
3564
3531
*/
3532
+ + @Deprecated(forRemoval = true)
3565
3533
public void useTimings(boolean use) {
3566
3534
- useTimings = use;
3567
3535
+ co.aikar.timings.Timings.setTimingsEnabled(use); // Paper
0 commit comments