mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-10 17:52:02 -07:00
Prepare for 1.19 dev
This commit is contained in:
@@ -1,32 +0,0 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||||
Date: Wed, 5 Jan 2022 12:12:58 -0800
|
||||
Subject: [PATCH] Remove upstream snakeyaml fix
|
||||
|
||||
See Server Patch: Fix saving configs with more long comments
|
||||
|
||||
diff --git a/src/main/java/org/bukkit/configuration/file/YamlConfiguration.java b/src/main/java/org/bukkit/configuration/file/YamlConfiguration.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/configuration/file/YamlConfiguration.java
|
||||
+++ b/src/main/java/org/bukkit/configuration/file/YamlConfiguration.java
|
||||
@@ -0,0 +0,0 @@ public class YamlConfiguration extends FileConfiguration {
|
||||
yamlLoaderOptions = new LoaderOptions();
|
||||
yamlLoaderOptions.setMaxAliasesForCollections(Integer.MAX_VALUE); // SPIGOT-5881: Not ideal, but was default pre SnakeYAML 1.26
|
||||
|
||||
- yaml = new BukkitYaml(constructor, representer, yamlDumperOptions, yamlLoaderOptions);
|
||||
+ yaml = new /*BukkitYaml*/Yaml(constructor, representer, yamlDumperOptions, yamlLoaderOptions); // Paper - don't use upstream BukkitYaml fix, add the whole snakeyaml Emitter class itself with the fix
|
||||
}
|
||||
|
||||
@NotNull
|
||||
diff --git a/src/test/java/org/bukkit/configuration/file/YamlConfigurationTest.java b/src/test/java/org/bukkit/configuration/file/YamlConfigurationTest.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/test/java/org/bukkit/configuration/file/YamlConfigurationTest.java
|
||||
+++ b/src/test/java/org/bukkit/configuration/file/YamlConfigurationTest.java
|
||||
@@ -0,0 +0,0 @@ public class YamlConfigurationTest extends FileConfigurationTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
+ @org.junit.Ignore // Paper - ignore test because our fix doesn't work in testing environment
|
||||
public void test100Comments() throws InvalidConfigurationException {
|
||||
StringBuilder commentBuilder = new StringBuilder();
|
||||
for (int i = 0; i < 100; i++) {
|
Reference in New Issue
Block a user