--- a/jdk/src/share/classes/java/util/PropertyResourceBundle.java Tue Sep 11 19:58:36 2012 +0400
+++ b/jdk/src/share/classes/java/util/PropertyResourceBundle.java Fri Aug 31 13:42:47 2012 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2006, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2012, 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
@@ -125,6 +125,7 @@
* @throws IOException if an I/O error occurs
* @throws NullPointerException if <code>stream</code> is null
*/
+ @SuppressWarnings({"unchecked", "rawtypes"})
public PropertyResourceBundle (InputStream stream) throws IOException {
Properties properties = new Properties();
properties.load(stream);
@@ -143,6 +144,7 @@
* @throws NullPointerException if <code>reader</code> is null
* @since 1.6
*/
+ @SuppressWarnings({"unchecked", "rawtypes"})
public PropertyResourceBundle (Reader reader) throws IOException {
Properties properties = new Properties();
properties.load(reader);