private Node()

in tools/javac/ApiComparator.java [60:62]


        private Node(Object a, Object b) {
            this((b == null ? a : b).toString(), b == null ? Diff.REMOVED : a == null ? Diff.ADDED : Diff.NONE);
        }