8033527: Fix raw type lint warning in sun.nio.ch

Reviewed-by: henryjen, mchung
This commit is contained in:
Joe Darcy 2014-02-03 22:26:26 -08:00
parent c4f2b88d81
commit a80e3ed0ee

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2000, 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
@ -75,7 +75,7 @@ class Reflect { // package-private
static Method lookupMethod(String className,
String methodName,
Class... paramTypes)
Class<?>... paramTypes)
{
try {
Class<?> cl = Class.forName(className);