Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 165095

Summary: Path to the file is not shown in expression window - we only see c:\\\
Product: z_Archived Reporter: Gadi Goldbarg <gadi>
Component: PDTAssignee: moshe <moshe>
Status: CLOSED FIXED QA Contact:
Severity: enhancement    
Priority: P2 Keywords: plan
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Whiteboard:
Attachments:
Description Flags
example none

Description Gadi Goldbarg CLA 2006-11-19 08:13:18 EST
see on the attached screen image that when added watch 'C:\Program 
Files\Zend...' but i see only C:\\\\
Comment 1 Gadi Goldbarg CLA 2006-11-19 08:14:03 EST
Created attachment 54131 [details]
example
Comment 2 moshe CLA 2007-02-12 03:32:10 EST
Replace the method in ExpressionsValueDeserializer(line 82):

private ExpressionValue buildSringType(VariableReader reader) {
	String value = reader.readString();
	String valueAsString = "(string:" + value.length() + ") " + value.replaceAll("\\\\", "\\\\\\\\");
	return new ExpressionValue(ExpressionValue.STRING_TYPE, value, valueAsString, null);
}
Comment 3 Shalom Gibly CLA 2007-02-13 06:13:33 EST
Fixed (applied the patch).
Thanks Moshe!!
Comment 4 Gadi Goldbarg CLA 2007-02-18 03:03:16 EST
fixed
Comment 5 Shalom Gibly CLA 2007-02-18 10:07:27 EST
*** Bug 169063 has been marked as a duplicate of this bug. ***