()
| 71 | builder.setSetFactory(new CollectionBuilder.Factory() { |
| 72 | |
| 73 | public CollectionBuilder builder() { |
| 74 | return new CollectionBuilder() { |
| 75 | Set<Object> set = new LinkedHashSet(); |
| 76 | |
| 77 | public void add(Object o) { |
| 78 | this.set.add(o); |
| 79 | } |
| 80 | |
| 81 | // public Object build() { |
| 82 | // return Collections.unmodifiableSet(this.set); |
| 83 | // } |
| 84 | public Object build() { |
| 85 | return new LinkedHashSet(this.set); |
| 86 | } |
| 87 | }; |
| 88 | } |
| 89 | }); |
| 90 | theParser = Parsers.newParser(builder.build()); |
| 91 |
no outgoing calls
no test coverage detected