remove @Override for Java5 compatibility

This commit is contained in:
Robert Kasanicky
2011-05-02 23:43:21 +02:00
parent b57ffa731d
commit 30d1e9fe38

View File

@@ -372,13 +372,11 @@ public class StaxEventItemReaderTests {
public static final String MESSAGE = "Unmarshallers on strike.";
@Override
public Object unmarshal(Source source) throws XmlMappingException, IOException {
throw new UnmarshallingFailureException(MESSAGE);
}
@SuppressWarnings("rawtypes")
@Override
public boolean supports(Class clazz) {
return true;
}