Hammered out some compiler warnings

This commit is contained in:
Iwein Fuld
2009-03-23 16:14:05 +00:00
parent 6bd4daf632
commit 51142a0cd9
15 changed files with 20 additions and 21 deletions

View File

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

View File

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

View File

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