Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-05-31 11:37:28 +0000
committerAlexander Kurtakov2019-05-31 11:37:28 +0000
commit49b5df832c0c1afea5096544cc36d0d3cfd506d6 (patch)
tree85aee71f4bfb4a0c664e736b230384595ac801f3 /org.eclipse.m2e.core.ui/src/org/eclipse
parent44e2968d599470cdde4090d17ade608b49979825 (diff)
downloadm2e-core-49b5df832c0c1afea5096544cc36d0d3cfd506d6.tar.gz
m2e-core-49b5df832c0c1afea5096544cc36d0d3cfd506d6.tar.xz
m2e-core-49b5df832c0c1afea5096544cc36d0d3cfd506d6.zip
Fix generification warnings in the workspace.
Change-Id: Ia68b6cac13f2ff8dc9231bb7ad2c964624760264 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.m2e.core.ui/src/org/eclipse')
-rw-r--r--org.eclipse.m2e.core.ui/src/org/eclipse/m2e/core/ui/internal/search/util/ControlDecoration.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.m2e.core.ui/src/org/eclipse/m2e/core/ui/internal/search/util/ControlDecoration.java b/org.eclipse.m2e.core.ui/src/org/eclipse/m2e/core/ui/internal/search/util/ControlDecoration.java
index e08fb8d2..294218e2 100644
--- a/org.eclipse.m2e.core.ui/src/org/eclipse/m2e/core/ui/internal/search/util/ControlDecoration.java
+++ b/org.eclipse.m2e.core.ui/src/org/eclipse/m2e/core/ui/internal/search/util/ControlDecoration.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008-2010 Sonatype, Inc.
+ * Copyright (c) 2008, 2019 Sonatype, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -125,12 +125,12 @@ public class ControlDecoration {
/**
* Registered selection listeners.
*/
- ListenerList selectionListeners = new ListenerList();
+ ListenerList<SelectionListener> selectionListeners = new ListenerList<>();
/**
* Registered menu detect listeners.
*/
- ListenerList menuDetectListeners = new ListenerList();
+ ListenerList<MenuDetectListener> menuDetectListeners = new ListenerList<>();
/**
* The focus listener

Back to the top