might only affect Java target runtime:

*    constructor does not create its array

edit //depot/code/antlr/main/runtime/Java/src/org/antlr/runtime/ 
BitSet.java#5
Change 4993 submitted.

Forgot this() at start of method:

        public BitSet(List items) {
                this();
                for (int i = 0; i < items.size(); i++) {
                        Integer v = (Integer) items.get(i);
                        add(v.intValue());
                }
        }

Ter
_______________________________________________
antlr-dev mailing list
[email protected]
http://www.antlr.org:8080/mailman/listinfo/antlr-dev

Reply via email to