Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2014-03-18 10:49:25 +0000
committerDani Megert2014-03-18 10:49:25 +0000
commit4bc6ccca1fce51cbebbaf00f27b4fabbf8ac08bc (patch)
tree3efb5e02a9dfae0f35edb2468c5d2973b9bbc564 /org.eclipse.debug.ui/ui
parent7e4e88d9f2389d0c23b504c1b1d393c9eeb1762c (diff)
downloadeclipse.platform.debug-4bc6ccca1fce51cbebbaf00f27b4fabbf8ac08bc.tar.gz
eclipse.platform.debug-4bc6ccca1fce51cbebbaf00f27b4fabbf8ac08bc.tar.xz
eclipse.platform.debug-4bc6ccca1fce51cbebbaf00f27b4fabbf8ac08bc.zip
Fixed compile warningI20140318-0830
Diffstat (limited to 'org.eclipse.debug.ui/ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ExportBreakpointsOperation.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ExportBreakpointsOperation.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ExportBreakpointsOperation.java
index 8c4a04383..4f425053e 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ExportBreakpointsOperation.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ExportBreakpointsOperation.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2013 IBM Corporation and others.
+ * Copyright (c) 2005, 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
@@ -86,7 +86,6 @@ public class ExportBreakpointsOperation implements IRunnableWithProgress {
* @see org.eclipse.jface.operation.IRunnableWithProgress#run(org.eclipse.core.runtime.IProgressMonitor)
*/
@Override
- @SuppressWarnings("resource")
public void run(IProgressMonitor monitor) throws InvocationTargetException {
SubMonitor localmonitor = SubMonitor.convert(monitor, ImportExportMessages.ExportOperation_0, fBreakpoints.length);
XMLMemento memento = XMLMemento.createWriteRoot(IImportExportConstants.IE_NODE_BREAKPOINTS);

Back to the top