Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFBreakpointsModel.java')
-rw-r--r--plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFBreakpointsModel.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFBreakpointsModel.java b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFBreakpointsModel.java
index e238bd004..10caaafd1 100644
--- a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFBreakpointsModel.java
+++ b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFBreakpointsModel.java
@@ -673,7 +673,7 @@ public class TCFBreakpointsModel {
String file = (String)p.get(ATTR_REQESTED_FILE);
if (file == null || file.length() == 0) file = (String)p.get(ATTR_FILE);
if (file == null || file.length() == 0) file = marker_file;
- if (file != null && file.length() > 0) {
+ if (file != null && file.trim().length() > 0) {
String name = file;
boolean file_mapping = false;
if (capabilities != null) {

Back to the top