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 246505

Summary: Missing continuation indentation
Product: java Reporter: ulfzibis <ulfzibis>
Component: EditorAssignee: Dusan Balek <dbalek>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P3    
Version: 8.0   
Hardware: PC   
OS: Linux   
Issue Type: DEFECT Exception Reporter:

Description ulfzibis 2014-08-17 16:00:15 UTC
[ JDK VERSION : 1.7.0_67 ]

STEPS:
   * Code: public class myPanel extends javax.swing.JPanel implements
myObserver {
   * Insert line break before implements.

ACTUAL:
public class myPanel extends javax.swing.JPanel
implements myObserver {

EXPECTED:
public class myPanel extends javax.swing.JPanel
        implements myObserver {
Comment 1 Jiri Prox 2014-08-18 07:53:45 UTC
reproducible
Comment 2 Dusan Balek 2014-08-18 10:12:11 UTC
Fixed in jet-main.

http://hg.netbeans.org/jet-main/rev/02bfd72f35c3
Comment 3 Quality Engineering 2014-08-20 02:21:11 UTC
Integrated into 'main-silver', will be available in build *201408200001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/02bfd72f35c3
User: Dusan Balek <dbalek@netbeans.org>
Log: Issue #246505: Missing continuation indentation - fixed.