chore: clean up code

This commit is contained in:
Paul Makles
2022-06-09 14:47:33 +01:00
parent ee80dfd3c8
commit 040c4367f7
2 changed files with 1 additions and 5 deletions

2
external/lang vendored

View File

@@ -73,14 +73,10 @@ export default class Ordering implements Store, Persistent<Data>, Syncable {
} }
} }
console.info("out1", out);
for (const id of known) { for (const id of known) {
out.push(this.state.client!.servers.get(id)!); out.push(this.state.client!.servers.get(id)!);
} }
console.info("out2", out);
return out; return out;
} }