Re: Review request for 6895875: Missing serialVersionUID in sun.management classes

2009-10-28 Thread Alan Bateman
Mandy Chung wrote: : I'm unsure if that's the reason. j.u.l.LoggingMXBean extends j.l.management.PlatformManagedObject before the fix for 6876135. There should be no dependency change as I can see. I suspect it's related to some changesets pushed in the last 2 weeks and this fix happens to

Re: Review request for 6895875: Missing serialVersionUID in sun.management classes

2009-10-28 Thread Mandy Chung
Alan Bateman wrote: I'll bet that it's j.l.management.PlatformManagedObject that needs to be compiled and that is causing JMX and classes in sun.management to be compiled. I'm unsure if that's the reason. j.u.l.LoggingMXBean extends j.l.management.PlatformManagedObject before the fix for 68

Re: Review request for 6895875: Missing serialVersionUID in sun.management classes

2009-10-28 Thread Alan Bateman
Mandy Chung wrote: With the fix for 6876135, compiling nio pulls in sun.management classes earlier to compile. make/java/nio/Makefile sets -Xlint:serial -Werror flags that also are passed to javac when compiling sun.management classes that are not serial javac warning free. I haven't underst

Review request for 6895875: Missing serialVersionUID in sun.management classes

2009-10-28 Thread Mandy Chung
With the fix for 6876135, compiling nio pulls in sun.management classes earlier to compile. make/java/nio/Makefile sets -Xlint:serial -Werror flags that also are passed to javac when compiling sun.management classes that are not serial javac warning free. I haven't understood completely how s