Changeset 52:6e885ae0ec04
- Timestamp:
- 04/11/08 11:09:49 (8 months ago)
- Files:
-
- dwtx/jface/resource/ImageRegistry.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwtx/jface/resource/ImageRegistry.d
r43 r52 328 328 329 329 private Entry getEntry(String key) { 330 return cast(Entry) getTable().get(key); 330 auto tbl = getTable(); 331 return cast(Entry) ( tbl.containsKey(key) ? tbl.get(key) : null ); 331 332 } 332 333
