Fixed #1888 Casts in binary operations, not casting any type

This commit is contained in:
Jindra Petřík
2022-11-26 14:18:08 +01:00
parent 954200484c
commit 9e8d00edba
40 changed files with 124 additions and 96 deletions

View File

@@ -31,6 +31,8 @@ import java.util.List;
public class DottedChain implements Serializable, Comparable<DottedChain> {
public static final DottedChain EMPTY = new DottedChain(true);
public static final DottedChain UNBOUNDED = new DottedChain(new String[]{"*"});
public static final DottedChain TOPLEVEL = new DottedChain(new String[]{});