()
| 329 | return new Lazy<Box>() { |
| 330 | LinkedHashSet<Box> ret = null; |
| 331 | Set<Box> thisLevel = null; |
| 332 | |
| 333 | protected Iterator<Box> initialize() { |
| 334 | |
| 335 | ret = new LinkedHashSet<>(); |
| 336 | ret.add(Box.this); |
| 337 | thisLevel = ret; |
| 338 | return ret.iterator(); |
| 339 | } |
| 340 |
no test coverage detected