Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org/eclipse/team/core/internal/FileTypeRegistry.java')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/internal/FileTypeRegistry.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/internal/FileTypeRegistry.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/internal/FileTypeRegistry.java
index 30cc05d89..8abbd49bd 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/internal/FileTypeRegistry.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/internal/FileTypeRegistry.java
@@ -28,10 +28,10 @@ import org.eclipse.team.core.TeamPlugin;
*/
public class FileTypeRegistry implements IFileTypeRegistry {
// Constant for the saved state file name
- private static final String STATE_FILE = ".fileTypes";
+ private static final String STATE_FILE = ".fileTypes"; //$NON-NLS-1$
// The id of the file types extension point
- private static final String FILE_TYPES_EXTENSION = "fileTypes";
+ private static final String FILE_TYPES_EXTENSION = "fileTypes"; //$NON-NLS-1$
// Keys: file extensions. Values: Integers
private Hashtable table;
@@ -99,14 +99,14 @@ public class FileTypeRegistry implements IFileTypeRegistry {
for (int i = 0; i < extensions.length; i++) {
IConfigurationElement[] configElements = extensions[i].getConfigurationElements();
for (int j = 0; j < configElements.length; j++) {
- String ext = configElements[j].getAttribute("extension");
+ String ext = configElements[j].getAttribute("extension"); //$NON-NLS-1$
if (ext != null) {
- String type = configElements[j].getAttribute("type");
+ String type = configElements[j].getAttribute("type"); //$NON-NLS-1$
// If the extension doesn't already exist, add it.
if (!containsExtension(ext)) {
- if (type.equals("text")) {
+ if (type.equals("text")) { //$NON-NLS-1$
setValue(ext, TEXT);
- } else if (type.equals("binary")) {
+ } else if (type.equals("binary")) { //$NON-NLS-1$
setValue(ext, BINARY);
}
}
@@ -179,7 +179,7 @@ public class FileTypeRegistry implements IFileTypeRegistry {
*/
private void savePluginState() {
IPath pluginStateLocation = TeamPlugin.getPlugin().getStateLocation();
- File tempFile = pluginStateLocation.append(STATE_FILE + ".tmp").toFile();
+ File tempFile = pluginStateLocation.append(STATE_FILE + ".tmp").toFile(); //$NON-NLS-1$
File stateFile = pluginStateLocation.append(STATE_FILE).toFile();
try {
DataOutputStream dos = new DataOutputStream(new FileOutputStream(tempFile));

Back to the top