Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/console/FileLink.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/console/FileLink.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/console/FileLink.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/console/FileLink.java
index 32962f107..47d67bc34 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/console/FileLink.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/console/FileLink.java
@@ -49,10 +49,10 @@ public class FileLink implements IConsoleHyperlink {
private int fFileLength;
private int fFileLineNumber;
private String fEditorId;
-
+
/**
* Constructs a hyperlink to the specified file.
- *
+ *
* @param file the file to open when activated
* @param editorId the identifier of the editor to open the file in, or
* <code>null</code> if the default editor should be used
@@ -117,7 +117,7 @@ public class FileLink implements IConsoleHyperlink {
}
} catch (PartInitException e) {
DebugUIPlugin.log(e);
- }
+ }
}
}
}
@@ -135,7 +135,7 @@ public class FileLink implements IConsoleHyperlink {
@Override
public void linkExited() {
}
-
+
private String getEditorId() {
if (fEditorId == null) {
IWorkbench workbench= DebugUIPlugin.getDefault().getWorkbench();

Back to the top