Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
None
-
Operating System: other
Platform: Other
-
37162
Description
Many classes such as BrentSolver use non-private serialversionUIDs. e.g.
static final long serialVersionUID = 3350616277306882875L;
should be
private static final long serialVersionUID = 3350616277306882875L;
I'll see if I can patch this.