Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Michel-Lemieux2004-05-17 20:14:51 +0000
committerJean Michel-Lemieux2004-05-17 20:14:51 +0000
commit3400b9f1afd2b71f3ea40f07a4fb8ad443377a79 (patch)
tree3183c2ab007a89cf298540d2cd49c99326e84831
parent07d6de8621178d4de267b6acc15f91c688c01e01 (diff)
downloadeclipse.platform.team-3400b9f1afd2b71f3ea40f07a4fb8ad443377a79.tar.gz
eclipse.platform.team-3400b9f1afd2b71f3ea40f07a4fb8ad443377a79.tar.xz
eclipse.platform.team-3400b9f1afd2b71f3ea40f07a4fb8ad443377a79.zip
NLS
-rw-r--r--examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/subscriber/FileSystemResourceVariant.java4
-rw-r--r--examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/subscriber/FileSystemSubscriber.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/subscriber/FileSystemResourceVariant.java b/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/subscriber/FileSystemResourceVariant.java
index 5ddd2c7fa..b9e4c07b9 100644
--- a/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/subscriber/FileSystemResourceVariant.java
+++ b/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/subscriber/FileSystemResourceVariant.java
@@ -74,7 +74,7 @@ public class FileSystemResourceVariant extends CachedResourceVariant {
} catch (IOException e) {
// Failed for some reason. Try the absolute path.
FileSystemPlugin.log(new Status(IStatus.ERROR, FileSystemPlugin.ID, 0,
- "Failed to obtain canonical path for " + ioFile.getAbsolutePath(), e));
+ "Failed to obtain canonical path for " + ioFile.getAbsolutePath(), e)); //$NON-NLS-1$
return ioFile.getAbsolutePath();
}
}
@@ -144,7 +144,7 @@ public class FileSystemResourceVariant extends CachedResourceVariant {
try {
return new BufferedInputStream(new FileInputStream(ioFile));
} catch (FileNotFoundException e) {
- throw new TeamException("Failed to fetch contents for " + getFilePath(), e);
+ throw new TeamException("Failed to fetch contents for " + getFilePath(), e); //$NON-NLS-1$
}
}
}
diff --git a/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/subscriber/FileSystemSubscriber.java b/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/subscriber/FileSystemSubscriber.java
index fc0880b46..bcf8c8938 100644
--- a/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/subscriber/FileSystemSubscriber.java
+++ b/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/subscriber/FileSystemSubscriber.java
@@ -83,7 +83,7 @@ public class FileSystemSubscriber extends ThreeWaySubscriber {
* @see org.eclipse.team.core.subscribers.Subscriber#getName()
*/
public String getName() {
- return "File System Example";
+ return "File System Example"; //$NON-NLS-1$
}
/* (non-Javadoc)

Back to the top