Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/SourceNotFoundEditorInput.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/SourceNotFoundEditorInput.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/SourceNotFoundEditorInput.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/SourceNotFoundEditorInput.java
index 6d94c489a..70e456ecc 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/SourceNotFoundEditorInput.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/SourceNotFoundEditorInput.java
@@ -25,16 +25,16 @@ import com.ibm.icu.text.MessageFormat;
/**
* Editor input for a stack frame for which source could not be located.
- *
+ *
* @since 2.1
*/
public class SourceNotFoundEditorInput extends PlatformObject implements IEditorInput {
-
+
/**
* Associated stack frame
*/
private IStackFrame fFrame;
-
+
/**
* Stack frame text (cached on creation)
*/
@@ -43,7 +43,7 @@ public class SourceNotFoundEditorInput extends PlatformObject implements IEditor
/**
* Constructs an editor input for the given stack frame,
* to indicate source could not be found.
- *
+ *
* @param frame stack frame
*/
public SourceNotFoundEditorInput(IStackFrame frame) {
@@ -77,7 +77,7 @@ public class SourceNotFoundEditorInput extends PlatformObject implements IEditor
try {
return fFrame.getName();
} catch (DebugException e) {
- return DebugUIViewsMessages.SourceNotFoundEditorInput_Source_Not_Found_1;
+ return DebugUIViewsMessages.SourceNotFoundEditorInput_Source_Not_Found_1;
}
}

Back to the top