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:
parent
b3577f221d
commit
c8bbe7c2eb
2 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
|
@ -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()]);
|
||||
|
|
Loading…
Add table
Reference in a new issue