Bug 50995

Summary: Non-externalized strings wrap lines incorrectly
Product: [Eclipse Project] JDT Reporter: Douglas Pollock <douglas.pollock>
Component: CoreAssignee: JDT-Core-Inbox <jdt-core-inbox>
Status: RESOLVED INVALID QA Contact:
Severity: major    
Priority: P3    
Version: 3.0   
Target Milestone: 3.0 M7   
Hardware: All   
OS: All   
Whiteboard:

Description Douglas Pollock CLA 2004-01-30 15:51:24 EST
final String happy = "string is a happy place" + "string is a happy place" +
"string is a happy place"; //$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$

becomes

final String happy = "string is a happy place"
        + "string is a happy place" + "string is a happy place";
//$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$


This breaks the externalized strings mechanism provided elsewhere in Eclipse. 
Non-externalized strings are both recognized as a quick fix and a compiler
setting.  They are requirement for all code written as part of Eclipse.

This makes the formatter unfit for developing Eclipse code.
Comment 1 Douglas Pollock CLA 2004-01-30 15:52:38 EST
bloody refresh on mozilla.  this is a dup (word for word) of Bug 50989.