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 - Missing continuation indentation
Summary: Missing continuation indentation
Status: RESOLVED FIXED
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 8.0
Hardware: PC Linux
: P3 normal with 1 vote (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-08-17 16:00 UTC by ulfzibis
Modified: 2014-08-20 02:21 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 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.