--- old/src/share/classes/sun/tools/jconsole/inspector/XOpenTypeViewer.java 2014-01-25 11:01:08.000000000 -0800 +++ new/src/share/classes/sun/tools/jconsole/inspector/XOpenTypeViewer.java 2014-01-25 11:01:06.000000000 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 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 @@ -389,7 +389,7 @@ Iterator it = keys.iterator(); Object[] rowData = new Object[2]; while (it.hasNext()) { - String key = (String) it.next(); + String key = it.next(); Object val = data.get(key); rowData[0] = formatKey(key); if (val == null) {