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 32072 - initComponents' body is sometimes generated with extra white space
Summary: initComponents' body is sometimes generated with extra white space
Status: RESOLVED WORKSFORME
Alias: None
Product: guibuilder
Classification: Unclassified
Component: Code (show other bugs)
Version: 3.x
Hardware: PC Windows ME/2000
: P4 blocker (vote)
Assignee: issues@guibuilder
URL:
Keywords: T9Y
Depends on:
Blocks:
 
Reported: 2003-03-18 09:01 UTC by Jan Becicka
Modified: 2004-06-01 10:18 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 Jan Becicka 2003-03-18 09:01:04 UTC
If I instantiate template Java Beans | 
Customizer, generated code is not always the 
same.

Sometimes is generated:

    private void initComponents() {
        setLayout(new java.awt.BorderLayout());

    }

But sometimes is generated:

    private void initComponents() {

        setLayout(new java.awt.BorderLayout());

    }


Yes, the only difference is in white space, 
but it can cause problems in automated tests.
Comment 1 Jan Stola 2004-06-01 10:18:02 UTC
I am sorry I am not able to reproduce this problem.
If it is still an issue, please, include the offending test.