Community
Participate
Working Groups
Build Identifier: M20110210-1200 If a class contains a String with an octal value, using Externalize String removes /modifies the String contents if you ignore the literal. This has caused source code content loss following NLS processing. Bug 89075 has been open on this since 2005 without action on ECLIPSE 3.1 Reproducible: Always Steps to Reproduce: 1. Create a new java class, Test, as follows: package pkg; public class Test { String foo = "\0"; } 2. Use the Externalize String function and Ignore the string. The string displayed in the table in the action dialog will be empty. 3. Accept the modifications. The resulting class will always, and incorrectly be: package pkg; public class Test { String foo = ""; //$NON-NLS-1$ }
*** This bug has been marked as a duplicate of bug 89075 ***