- Timestamp:
- 09/27/11 20:09:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands/CMDshowSequences.java
r140 r203 2 2 3 3 import java.security.InvalidParameterException; 4 import java.util.Collection; 4 5 import java.util.List; 5 6 … … 22 23 throw new InvalidParameterException(); 23 24 24 List<List<Event<?>>> containedSequences = null;25 Collection<List<Event<?>>> containedSequences = null; 25 26 26 27 try { 27 containedSequences = ( List<List<Event<?>>>) GlobalDataContainer28 containedSequences = (Collection<List<Event<?>>>) GlobalDataContainer 28 29 .getInstance().getData("sequences"); 29 30 } catch (ClassCastException e) {
Note: See TracChangeset
for help on using the changeset viewer.