From 02c64ae77a319876d0abe6b62216b996d9065dbb Mon Sep 17 00:00:00 2001 From: Joe Darcy Date: Tue, 7 Jan 2014 12:56:29 -0800 Subject: [PATCH] 8031361: Fix raw types warning in java.lang.management Reviewed-by: psandoz, lancea, alanb --- .../share/classes/java/lang/management/ManagementFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jdk/src/share/classes/java/lang/management/ManagementFactory.java b/jdk/src/share/classes/java/lang/management/ManagementFactory.java index 0c7297abe95..064c4921e96 100644 --- a/jdk/src/share/classes/java/lang/management/ManagementFactory.java +++ b/jdk/src/share/classes/java/lang/management/ManagementFactory.java @@ -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);