(String uid)
| 1102 | return c; |
| 1103 | } |
| 1104 | |
| 1105 | protected Optional<Box> findBoxByID(String uid) { |
| 1106 | return breadthFirst(both()).filter(x -> Util.safeEq(x.properties.get(IO.id), uid)) |
| 1107 | .findFirst(); |
| 1108 | } |
| 1109 | |
| 1110 | public Dict.Prop<String> getCurrentlyEditingProperty() { |
no test coverage detected