Bug 50995 - Non-externalized strings wrap lines incorrectly
Summary: Non-externalized strings wrap lines incorrectly
Status: RESOLVED INVALID
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.0   Edit
Hardware: All All
: P3 major (vote)
Target Milestone: 3.0 M7   Edit
Assignee: JDT-Core-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-01-30 15:51 EST by Douglas Pollock CLA
Modified: 2004-02-09 12:58 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.