Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2017-10-07 09:40:14 +0000
committerAlexander Kurtakov2017-10-07 09:40:14 +0000
commitb58fc846d236c3732e8976f5e203c57e0863e2be (patch)
tree19c50dffccb1336e03c9e857ae0ac7db864ee374
parent4d346ac2e0b41c6a0fa853ce1ec8893ce9b6b281 (diff)
downloadrt.equinox.p2-b58fc846d236c3732e8976f5e203c57e0863e2be.tar.gz
rt.equinox.p2-b58fc846d236c3732e8976f5e203c57e0863e2be.tar.xz
rt.equinox.p2-b58fc846d236c3732e8976f5e203c57e0863e2be.zip
Bug 521147 - Move p2 ui.importexport to Java 8
Add missing Override annotation. Change-Id: I8a7155e5355679d52a8caf9b3036fe9f9613dbcf Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.equinox.p2.ui.importexport/src/org/eclipse/equinox/internal/p2/importexport/IUDetail.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui.importexport/src/org/eclipse/equinox/internal/p2/importexport/IUDetail.java b/bundles/org.eclipse.equinox.p2.ui.importexport/src/org/eclipse/equinox/internal/p2/importexport/IUDetail.java
index 8c1a17377..ffe2f06b5 100644
--- a/bundles/org.eclipse.equinox.p2.ui.importexport/src/org/eclipse/equinox/internal/p2/importexport/IUDetail.java
+++ b/bundles/org.eclipse.equinox.p2.ui.importexport/src/org/eclipse/equinox/internal/p2/importexport/IUDetail.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 WindRiver Corporation and others.
+ * Copyright (c) 2011, 2017 WindRiver Corporation and others.
* 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
@@ -33,6 +33,7 @@ public class IUDetail implements IAdaptable {
return referredRepo;
}
+ @Override
@SuppressWarnings("unchecked")
public <T> T getAdapter(Class<T> adapter) {
if (IInstallableUnit.class.equals(adapter))

Back to the top