Changeset 19405
- Timestamp:
- 11/02/06 14:19:32 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/branches/2.0/modules/vrjuggler/vrjconfig/org/vrjuggler/vrjconfig/ui/ContextToolbar.java
r17198 r19405 533 533 for (Iterator itr = context.getResources().iterator(); itr.hasNext(); ) 534 534 { 535 broker.remove((String)itr.next()); 535 try 536 { 537 broker.remove((String) itr.next()); 538 } 539 // If the current file is no open in the Config Broker, an illegal 540 // argument exception will be thrown. We just ignore that occurrence. 541 catch (IllegalArgumentException ex) 542 { 543 /* Do nothing. */ ; 544 } 536 545 } 537 546
