Commit e3a2173c by Venkat Ranganathan

metadata-#31 - Multiplicity to be a generic - constructor should be public

parent cd448abe
......@@ -23,7 +23,7 @@ public final class Multiplicity {
public final int upper;
public final boolean isUnique;
private Multiplicity(int lower, int upper, boolean isUnique) {
public Multiplicity(int lower, int upper, boolean isUnique) {
assert lower >= 0;
assert upper >= 1;
assert upper >= lower;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment