This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 48439 - [40cat] Splitting string is not aligning
Summary: [40cat] Splitting string is not aligning
Status: RESOLVED DUPLICATE of bug 6065
Alias: None
Product: editor
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 4.x
Hardware: PC Windows XP
: P3 blocker (vote)
Assignee: issues@editor
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-09-03 09:31 UTC by dynamite
Modified: 2007-11-05 13:44 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description dynamite 2004-09-03 09:31:55 UTC
[ BUILD # : 200408271257 ]
[ JDK VERSION : J2SE 1.5.0 ]

        assertTrue("here is some text" +
        "that is on two lines");

Would look better as:

        assertTrue("here is some text" +
                   "that is on two lines");

When the split is near the 80 character limit (say within 20 characters) the alignment could then change to:

        assertTrue("here is some text" +
            "that is on two lines");
Comment 1 Martin Roskanin 2004-09-06 12:32:32 UTC
already reported. Thanks for your report

*** This issue has been marked as a duplicate of 6065 ***