package net.pterodactylus.demoscenemusic.data;
-import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
+import java.util.TreeMap;
/**
* Container for custom properties that can be attached to all data containers.
public class Properties implements Iterable<Entry<String, String>> {
/** The properties. */
- private final Map<String, String> properties = new HashMap<String, String>();
+ private final Map<String, String> properties = new TreeMap<String, String>();
/** The “dirty” flag. */
private boolean dirty = false;