Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTod Creasey2007-08-13 15:41:36 +0000
committerTod Creasey2007-08-13 15:41:36 +0000
commit45d1b74703e78779d523abe61d2288ca7ed2fbb8 (patch)
treec26e572855c05188f2e1e11c48cfe95df37f35f6 /bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPathEditorInput.java
parent154a26ed135c8feecfe2003f5d2cb63c266e48e6 (diff)
downloadeclipse.platform.ui-45d1b74703e78779d523abe61d2288ca7ed2fbb8.tar.gz
eclipse.platform.ui-45d1b74703e78779d523abe61d2288ca7ed2fbb8.tar.xz
eclipse.platform.ui-45d1b74703e78779d523abe61d2288ca7ed2fbb8.zip
Fix for Bug 199770 Check for invalid FileEditorInputs at construction time
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPathEditorInput.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPathEditorInput.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPathEditorInput.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPathEditorInput.java
index 9d24029f9ae..da8f0ff2bb1 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPathEditorInput.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPathEditorInput.java
@@ -35,7 +35,7 @@ public interface IPathEditorInput extends IEditorInput {
/**
* Returns the local file system path of the file underlying this editor input.
*
- * @return a local file system {@link IPath} or <code>null</code> if it could not be found
+ * @return a local file system path
*/
public IPath getPath();
}

Back to the top