(int dclass)
| 89 | } |
| 90 | |
| 91 | public Cache |
| 92 | getCache(int dclass) { |
| 93 | Cache c = (Cache) caches.get(dclass); |
| 94 | if (c == null) { |
| 95 | c = new Cache(dclass); |
| 96 | caches.put(dclass, c); |
| 97 | } |
| 98 | return c; |
| 99 | } |
| 100 | |
| 101 | public Zone |
| 102 | findBestZone(Name name) { |
no test coverage detected