MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / builder

Method builder

src/main/java/fieldbox/io/EDN.java:73–88  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 6

webcam.box.jsFile · 0.45
t_fadeplane.box.jsFile · 0.45
triangles.box.jsFile · 0.45
triangles.box.jsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected