Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Rennie2014-08-13 12:51:53 +0000
committerMike Rennie2014-08-13 12:52:34 +0000
commitbbfb01305dca3332c80e5cdc4a50b5b7ddcbdf31 (patch)
tree7a9a96383569e0ee6cef97d71db669cdd9498beb /org.eclipse.debug.ui/ui/org/eclipse/debug/ui
parent5d4ea367b42aa3d2a875fcc86f4ccf6ef74a62fe (diff)
downloadeclipse.platform.debug-bbfb01305dca3332c80e5cdc4a50b5b7ddcbdf31.tar.gz
eclipse.platform.debug-bbfb01305dca3332c80e5cdc4a50b5b7ddcbdf31.tar.xz
eclipse.platform.debug-bbfb01305dca3332c80e5cdc4a50b5b7ddcbdf31.zip
Bug 437193 - JSR-45 Support broken
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
index ab92b7437..cb5b1b94e 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2013 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
@@ -989,7 +989,7 @@ public class DebugUITools {
* @since 3.1
*/
public static ISourceLookupResult lookupSource(Object artifact, ISourceLocator locator) {
- return SourceLookupFacility.getDefault().lookup(artifact, locator);
+ return SourceLookupFacility.getDefault().lookup(artifact, locator, false);
}
/**

Back to the top