Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/pda/service/command/BasicTests.java')
-rw-r--r--dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/pda/service/command/BasicTests.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/pda/service/command/BasicTests.java b/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/pda/service/command/BasicTests.java
index 21357136060..d34814e66ab 100644
--- a/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/pda/service/command/BasicTests.java
+++ b/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/pda/service/command/BasicTests.java
@@ -61,10 +61,10 @@ public class BasicTests extends CommandControlTestsBase {
class CommandListener implements ICommandListener {
- List<CommandInfo> fDoneCommands = new LinkedList<CommandInfo>();
- List<CommandInfo> fQueuedCommands = new LinkedList<CommandInfo>();
- List<CommandInfo> fRemovedCommands = new LinkedList<CommandInfo>();
- List<CommandInfo> fSentCommands = new LinkedList<CommandInfo>();
+ List<CommandInfo> fDoneCommands = new LinkedList<>();
+ List<CommandInfo> fQueuedCommands = new LinkedList<>();
+ List<CommandInfo> fRemovedCommands = new LinkedList<>();
+ List<CommandInfo> fSentCommands = new LinkedList<>();
@Override
public void commandDone(ICommandToken token, ICommandResult result) {

Back to the top