jdk/src/solaris/classes/sun/nio/ch/InheritedChannel.java
changeset 25798 0b2f54e47bc4
parent 23010 6dadb192ad81
--- a/jdk/src/solaris/classes/sun/nio/ch/InheritedChannel.java	Thu Jul 31 11:31:57 2014 +0400
+++ b/jdk/src/solaris/classes/sun/nio/ch/InheritedChannel.java	Thu Jul 31 11:48:39 2014 -0700
@@ -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
@@ -165,7 +165,7 @@
         // Have to use reflection and also make assumption on how FD
         // is implemented.
 
-        Class paramTypes[] = { int.class };
+        Class<?> paramTypes[] = { int.class };
         Constructor<?> ctr = Reflect.lookupConstructor("java.io.FileDescriptor",
                                                        paramTypes);
         Object args[] = { new Integer(fdVal) };