Commit 860fde4f authored by Emeric Verschuur's avatar Emeric Verschuur
Browse files

Add default constructor

parent 983e2bd8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ public class VariantMap extends Variant implements Map<String, Variant> {
		this.data = new HashMap<>(value);
	}

    private VariantMap() {
	public VariantMap() {
    	this.data = new HashMap<>();
	}