Updated for slightly cleaner event handler syntax

This commit is contained in:
zml2008
2012-01-19 15:21:18 -08:00
parent 6d8be92e45
commit 6134d2b868
4 changed files with 12 additions and 9 deletions

View File

@ -72,7 +72,10 @@ public class YAMLProcessor extends YAMLNode {
protected String header = null;
protected YAMLFormat format;
// Map from property key to comment. Comment may have multiple lines that are newline-separated.
/*
* Map from property key to comment. Comment may have multiple lines that are newline-separated.
* Comments support based on ZerothAngel's AnnotatedYAMLConfiguration
*/
private final Map<String, String> comments = new HashMap<String, String>();
public YAMLProcessor(File file, boolean writeDefaults, YAMLFormat format) {