INT-1596, fixed the broken links as well as all warnings

This commit is contained in:
Oleg Zhurakousky
2010-11-09 12:17:45 -05:00
parent 8da4fae7ef
commit 1278666ed7
31 changed files with 40 additions and 259 deletions

View File

@@ -111,7 +111,8 @@ public class MarshallingWebServiceIntegrationTests {
}
}
@SuppressWarnings("unchecked")
@SuppressWarnings("rawtypes")
public boolean supports(Class clazz) {
return true;
}

View File

@@ -28,7 +28,7 @@ import org.springframework.oxm.XmlMappingException;
*/
public class StubMarshaller implements Marshaller {
@SuppressWarnings("unchecked")
@SuppressWarnings("rawtypes")
public boolean supports(Class clazz) {
return false;
}

View File

@@ -30,7 +30,8 @@ import org.springframework.oxm.XmlMappingException;
*/
public class StubMarshallerAndUnmarshaller implements Marshaller, Unmarshaller {
@SuppressWarnings("unchecked")
@SuppressWarnings("rawtypes")
public boolean supports(Class clazz) {
return false;
}

View File

@@ -28,7 +28,8 @@ import org.springframework.oxm.XmlMappingException;
*/
public class StubUnmarshaller implements Unmarshaller {
@SuppressWarnings("unchecked")
@SuppressWarnings("rawtypes")
public boolean supports(Class clazz) {
return false;
}