RFR(S): 7074616: java.lang.management.ManagementFactory.getPlatformManagementInterfaces fails (original) (raw)
Staffan Larsen staffan.larsen at oracle.com
Fri Mar 2 03:07:59 PST 2012
- Previous message: RFR(S): 7074616: java.lang.management.ManagementFactory.getPlatformManagementInterfaces fails
- Next message: RFR(S): 7074616: java.lang.management.ManagementFactory.getPlatformManagementInterfaces fails
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Looks good. But should we add a test for this?
/Staffan
On 2 mar 2012, at 10:42, Frederic Parain wrote:
Greetings,
A simple bug fix. The getPlatformManagementInterfaces() method tries to populate a TreeSet with classes that don't implement the Comparable interface. The return type of the method is Set<Class<? extends PlatformManagedObject>>, so no need to have a sorted collection. The fix replaces the use of a TreeSet with a HashSet. The bug: http://bugs.sun.com/bugdatabase/viewbug.do?bugid=7074616 The webrev: http://cr.openjdk.java.net/~fparain/7074616/webrev.00/ Thanks, Fred -- Frederic Parain - Oracle Grenoble Engineering Center - France Phone: +33 4 76 18 81 17 Email: Frederic.Parain at Oracle.com
- Previous message: RFR(S): 7074616: java.lang.management.ManagementFactory.getPlatformManagementInterfaces fails
- Next message: RFR(S): 7074616: java.lang.management.ManagementFactory.getPlatformManagementInterfaces fails
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]