1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 18:56:02 +02:00

Forgot to mark a string as non-externalized

This commit is contained in:
Sean Evoy 2004-05-04 19:52:47 +00:00
parent b3577f221d
commit c8bbe7c2eb
2 changed files with 2 additions and 2 deletions

View file

@ -399,7 +399,7 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
// Save the document
IFile projectFile = project.getFile(SETTINGS_FILE_NAME);
String utfString = stream.toString("UTF8");
String utfString = stream.toString("UTF8"); //$NON-NLS-1$
if (projectFile.exists()) {
projectFile.setContents(new ByteArrayInputStream(utfString.getBytes()), IResource.FORCE, null);
} else {

View file

@ -460,7 +460,7 @@ public class Target extends BuildObject implements ITarget {
return parent.getTargetOSList();
} else {
// I have no parent and no defined filter list
return new String[] {"all"};
return new String[] {"all"}; //$NON-NLS-1$
}
}
return (String[]) targetOSList.toArray(new String[targetOSList.size()]);