Fixed generics raw type compiler warnings

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@723304 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
mcombellack 2008-12-04 12:56:15 +00:00
parent 771e91d9dc
commit 1dc4e02e0c

View file

@ -332,7 +332,7 @@ public class JAXWSJavaInterfaceProcessor implements JavaInterfaceVisitor {
&& JAXWSFaultExceptionMapper.isMappedGetter(aMethod.getName())) { && JAXWSFaultExceptionMapper.isMappedGetter(aMethod.getName())) {
String propName = resolvePropertyFromMethod(aMethod.getName()); String propName = resolvePropertyFromMethod(aMethod.getName());
QName propQName = new QName(faultBeanName.getNamespaceURI(), propName); QName propQName = new QName(faultBeanName.getNamespaceURI(), propName);
Class propType = aMethod.getReturnType(); Class<?> propType = aMethod.getReturnType();
XMLType xmlPropType = new XMLType(propQName, null); XMLType xmlPropType = new XMLType(propQName, null);
DataType<XMLType> propDT = new DataTypeImpl<XMLType>(propType, xmlPropType); DataType<XMLType> propDT = new DataTypeImpl<XMLType>(propType, xmlPropType);
org.apache.tuscany.sca.databinding.annotation.DataType dt = org.apache.tuscany.sca.databinding.annotation.DataType dt =