static JComboBox jBotSelector() { final new JComboBox cb; thread { loading { L l = fullBotScan(); setComboBoxItems(cb, sorted(map(l, func(ScannedBot b) { //ret "[" + b.address + "] " + b.helloString; ret b.helloString + " [" + b.address + "]"; }))); } } ret cb; }