Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2014-05-12 19:26:08 +0000
committerMike Rennie2014-05-12 19:26:08 +0000
commit94fb73e332602ccedd875c9859fd72532490a905 (patch)
tree443aa4ec740301278f7e781b1f123d0e979b3b38
parentb92d7407a8b4eeac055248d6215c27a52d877d6b (diff)
downloadeclipse.jdt.debug-94fb73e332602ccedd875c9859fd72532490a905.tar.gz
eclipse.jdt.debug-94fb73e332602ccedd875c9859fd72532490a905.tar.xz
eclipse.jdt.debug-94fb73e332602ccedd875c9859fd72532490a905.zip
Bug 434612 - JDIModelPresentation can remove IDebugModelPresentation inI20140514-2000I20140513-2000I20140512-2000
implements section Change-Id: Ie077794594ee1164cb3d42047cbe06d7133fac17 Signed-off-by: Sarika Sinha <sarika.sinha@in.ibm.com>
-rw-r--r--org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/JDIModelPresentation.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/JDIModelPresentation.java b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/JDIModelPresentation.java
index b0b7b6086..85b057405 100644
--- a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/JDIModelPresentation.java
+++ b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/JDIModelPresentation.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2012 IBM Corporation and others.
+ * Copyright (c) 2000, 2014 IBM 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
@@ -103,7 +103,7 @@ import com.sun.jdi.ObjectCollectedException;
* Determines how to display java elements, including labels, images and editors.
* @see IDebugModelPresentation
*/
-public class JDIModelPresentation extends LabelProvider implements IDebugModelPresentation, IColorProvider, IDebugModelPresentationExtension {
+public class JDIModelPresentation extends LabelProvider implements IDebugModelPresentationExtension, IColorProvider {
/**
* Qualified names presentation property (value <code>"DISPLAY_QUALIFIED_NAMES"</code>).

Back to the top