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 270348 - wrong hint: Add default serialVersionUID
Summary: wrong hint: Add default serialVersionUID
Status: NEW
Alias: None
Product: ide
Classification: Unclassified
Component: Code (show other bugs)
Version: 8.2
Hardware: PC Windows 10 x64
: P4 normal (vote)
Assignee: issues@ide
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-04-10 15:52 UTC by FiruzzZ
Modified: 2017-04-10 15:52 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
IDE log (253.15 KB, text/plain)
2017-04-10 15:52 UTC, FiruzzZ
Details

Note You need to log in before you can comment on or make changes to this bug.
Description FiruzzZ 2017-04-10 15:52:26 UTC
After add the suggested private static final long serialVersionUID = 1L, the hint is still appearing

I have this hierarchy: 

public abstract class CustomABMController<T> implements CustomABMListener<T>, AccionListener, Component.Listener {

    protected final Logger LOG;
    private static final long serialVersionUID = 1777L;
.......
}

//on this class the Hint is always present
public class LiquidacionChoferABMController extends CustomABMController<LiquidacionChofer> {

    private static final long serialVersionUID = 1L;

}


Product Version = NetBeans IDE 8.2 (Build 201609300101)
Operating System = Windows 10 version 10.0 running on amd64
Java; VM; Vendor = 1.8.0_121
Runtime = Java HotSpot(TM) 64-Bit Server VM 25.121-b13

Reproducibility: Happens every time
Comment 1 FiruzzZ 2017-04-10 15:52:32 UTC
Created attachment 164066 [details]
IDE log