1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 21:05:37 +02:00

Fix to make UTF-8 compatible (Bug# 157113)

This commit is contained in:
Mikhail Sennikovsky 2006-09-13 08:57:26 +00:00
parent 92f1d746a0
commit 5e5664eae5

View file

@ -52,7 +52,7 @@ public interface IBuildEnvironmentVariable{
* The Environment Variable Provider will also remove the duplicates of "sub-values"
* in the resulting value.
* For example:
* If the current value is "string1:string2:string3", the getDelimiter() method returns :
* If the current value is "string1:string2:string3", the getDelimiter() method returns ":"
* and getValue() method returns "string4:string2" the new value will contain:
* For the "prepend" operation: "string4:string2:string1:string3"
* For the "append" operation: "string1:string3:string4:string2"