diff --git a/spring-batch-samples/src/test/java/org/springframework/batch/sample/CustomerFilterJobFunctionalTests.java b/spring-batch-samples/src/test/java/org/springframework/batch/sample/CustomerFilterJobFunctionalTests.java index 07065d5a9..8afe0dd4f 100644 --- a/spring-batch-samples/src/test/java/org/springframework/batch/sample/CustomerFilterJobFunctionalTests.java +++ b/spring-batch-samples/src/test/java/org/springframework/batch/sample/CustomerFilterJobFunctionalTests.java @@ -117,9 +117,6 @@ public class CustomerFilterJobFunctionalTests extends AbstractJobTests { this.credit = credit; } - public Customer() { - } - /** * @return the credit */ @@ -127,13 +124,6 @@ public class CustomerFilterJobFunctionalTests extends AbstractJobTests { return credit; } - /** - * @param credit the credit to set - */ - public void setCredit(double credit) { - this.credit = credit; - } - /** * @return the name */ @@ -141,13 +131,6 @@ public class CustomerFilterJobFunctionalTests extends AbstractJobTests { return name; } - /** - * @param name the name to set - */ - public void setName(String name) { - this.name = name; - } - /* * (non-Javadoc) *