SPIGOT-6866: Fixed spaces a between comment indicator and actual comment

By: Wolf2323 <gabrielpatrikurban@gmail.com>
This commit is contained in:
Bukkit/Spigot
2021-12-23 23:07:00 +01:00
parent 46d8d2cd11
commit 0503e4faed
3 changed files with 15 additions and 11 deletions

View File

@@ -373,7 +373,7 @@ public abstract class FileConfigurationTest extends MemoryConfigurationTest {
config.options().parseComments(true);
config.loadFromString("key1: value1\nkey2: value2 # Test inline\nkey3: value3");
assertEquals(Arrays.asList(" Test inline"), config.getInlineComments("key2"));
assertEquals(Arrays.asList("Test inline"), config.getInlineComments("key2"));
}
@Test
@@ -384,7 +384,7 @@ public abstract class FileConfigurationTest extends MemoryConfigurationTest {
config.set("key1", "value1");
config.set("key2", "value2");
config.set("key3", "value3");
config.setInlineComments("key2", Arrays.asList(" Test inline"));
config.setInlineComments("key2", Arrays.asList("Test inline"));
String result = config.saveToString();
String expected = "key1: value1\nkey2: value2 # Test inline\nkey3: value3\n";

View File

@@ -16,15 +16,15 @@ public class YamlConfigurationTest extends FileConfigurationTest {
@Override
public List<String> getTestCommentInput() {
List<String> comments = new ArrayList<>();
comments.add(" This is a sample");
comments.add(" header.");
comments.add(" Newline above should be commented.");
comments.add("This is a sample");
comments.add("header.");
comments.add("Newline above should be commented.");
comments.add("");
comments.add("");
comments.add(null);
comments.add(null);
comments.add(" Comment of first Key");
comments.add(" and a second line.");
comments.add("Comment of first Key");
comments.add("and a second line.");
return comments;
}
@@ -35,7 +35,7 @@ public class YamlConfigurationTest extends FileConfigurationTest {
@Override
public List<String> getTestHeaderComments() {
return Arrays.asList(" Header", " Second Line");
return Arrays.asList("Header", "Second Line");
}
@Override
@@ -45,7 +45,7 @@ public class YamlConfigurationTest extends FileConfigurationTest {
@Override
public List<String> getTestKeyComments() {
return Arrays.asList(" First key Comment", " Second Line");
return Arrays.asList("First key Comment", "Second Line");
}
@Override