8031361: Fix raw types warning in java.lang.management

Reviewed-by: psandoz, lancea, alanb
This commit is contained in:
Joe Darcy 2014-01-07 12:56:29 -08:00
parent 34ee8749b7
commit 02c64ae77a

@ -1,5 +1,5 @@
/*
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -612,7 +612,7 @@ public class ManagementFactory {
" is not an instance of " + mxbeanInterface);
}
final Class[] interfaces;
final Class<?>[] interfaces;
// check if the registered MBean is a notification emitter
boolean emitter = connection.isInstanceOf(objName, NOTIF_EMITTER);