From 30d1e9fe38c91cccf303d0097e309454dbbbc42d Mon Sep 17 00:00:00 2001 From: Robert Kasanicky Date: Mon, 2 May 2011 23:43:21 +0200 Subject: [PATCH] remove @Override for Java5 compatibility --- .../batch/item/xml/StaxEventItemReaderTests.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/xml/StaxEventItemReaderTests.java b/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/xml/StaxEventItemReaderTests.java index c55daa79a..132b9cbf8 100644 --- a/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/xml/StaxEventItemReaderTests.java +++ b/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/xml/StaxEventItemReaderTests.java @@ -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; }