diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemEditableRemoteFile.java b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemEditableRemoteFile.java index 3adf4a4b482..1f9f58ef249 100644 --- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemEditableRemoteFile.java +++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemEditableRemoteFile.java @@ -1491,7 +1491,7 @@ public class SystemEditableRemoteFile implements ISystemEditableRemoteObject, IP } else { // using text mode so the char set needs to be local - String localEncoding = System.getProperty("file.encoding"); + String localEncoding = System.getProperty("file.encoding"); //$NON-NLS-1$ file.setCharset(localEncoding, null); } } diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/internal/files/ui/propertypages/UniversalPreferencePage.java b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/internal/files/ui/propertypages/UniversalPreferencePage.java index a5524c5ad3a..a4c16830ad8 100644 --- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/internal/files/ui/propertypages/UniversalPreferencePage.java +++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/internal/files/ui/propertypages/UniversalPreferencePage.java @@ -118,7 +118,7 @@ public class UniversalPreferencePage protected Image fileImage; protected Image binaryFileImage; - protected String[] columnProperties = { "P_ICON", "P_TYPE", "P_CONTENT" }; + protected String[] columnProperties = { "P_ICON", "P_TYPE", "P_CONTENT" }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ /** * Constructor @@ -558,7 +558,7 @@ public class UniversalPreferencePage private Image applyBinaryDecoration(Image source) { - ImageDescriptor binaryOverlay = Activator.getImageDescriptor("/icons/full/ovr16/binary_ovr.gif"); + ImageDescriptor binaryOverlay = Activator.getImageDescriptor("/icons/full/ovr16/binary_ovr.gif"); //$NON-NLS-1$ DecorationOverlayIcon icon = new DecorationOverlayIcon(source, binaryOverlay, 3); return icon.createImage(); }