--- old/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/LeafBeanInfoImpl.java 2013-04-04 15:27:25.868613058 +0200 +++ new/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/LeafBeanInfoImpl.java 2013-04-04 15:27:25.816613057 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2013, 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 @@ -79,6 +79,7 @@ tagName = null; } + @Override public QName getTypeName(BeanT instance) { QName tn = xducer.getTypeName(instance); if(tn!=null) return tn; @@ -86,11 +87,11 @@ return super.getTypeName(instance); } - public final String getElementNamespaceURI(BeanT _) { + public final String getElementNamespaceURI(BeanT t) { return tagName.nsUri; } - public final String getElementLocalName(BeanT _) { + public final String getElementLocalName(BeanT t) { return tagName.localName; }