Community
Participate
Working Groups
if (ch == '\\') {
ch= getNext();
if (ch != '"') { // Only escape double quotes
buf.append('\\');
if (!Platform.getOS().equals(Constants.OS_MACOSX)) {
// @see Bug 255619. Mac OS X requires a slightly different treatment
}
} else {
if (Platform.getOS().equals(Constants.OS_WIN32)) {
// @see Bug 26870. Windows requires an extra escape for embedded strings