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 175652 - Code formatting inserts spaces before a class declaration
Summary: Code formatting inserts spaces before a class declaration
Status: VERIFIED DUPLICATE of bug 175582
Alias: None
Product: javafx
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: Anton Chechel
URL:
Keywords:
Depends on:
Blocks: 173487
  Show dependency tree
 
Reported: 2009-10-29 13:24 UTC by Alexandr Scherbatiy
Modified: 2009-11-18 03:41 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 Alexandr Scherbatiy 2009-10-29 13:24:01 UTC
Product Version         = NetBeans IDE Dev (Build 200910271401) (#32576b20b4bb)
  Operating System        = Windows XP version 5.1 running on x86
  Java; VM; Vendor        = 1.6.0_15; Java HotSpot(TM) Client VM 14.1-b02; Sun Microsystems Inc.


Steps to reproduce:
- Copy the code to the editor:
---------------------------------------------------------------
import java.util.HashMap;


class A {
    public var num : Number;
}

class B {

    public var text : String;
    public override function toString():String { text }
}


var a1 = A{ num: 1 };
var a2 = A{ num: 2 };

var b1 = B{ text: "One" };
var b2 = B{ text: "Two" };




var hashMap = new HashMap();

hashMap.put(a1, b1);
hashMap.put(a2, b2);

var value = hashMap.get(a1);
println(value);
---------------------------------------------------------------

- Format the code
The result is
---------------------------------------------------------------
import java.util.HashMap;


     class A {
    public var num : Number;
}

class B {

    public var text : String;
    public override function toString():String { text }
}


var a1 = A{ num: 1
     };
var a2 = A{ num: 2
     };

var b1 = B{ text: "One"
     };
var b2 = B{ text: "Two"
---------------------------------------------------------------

There are spaces before the A class declaration:

---------------------------------------------------------------
     class A {
    public var num : Number;
}
---------------------------------------------------------------
Comment 1 Anton Chechel 2009-11-02 14:24:21 UTC

*** This issue has been marked as a duplicate of 175582 ***
Comment 2 Alexandr Scherbatiy 2009-11-18 03:41:11 UTC
verified in Build 200911170201