From 20baeef5520eae50ad9992803096af2febb01b3e Mon Sep 17 00:00:00 2001 From: dsyer Date: Wed, 6 Feb 2008 19:36:33 +0000 Subject: [PATCH] Removed unused interface --- .../batch/io/file/transform/Converter.java | 37 ------------------- 1 file changed, 37 deletions(-) delete mode 100644 spring-batch-infrastructure/src/main/java/org/springframework/batch/io/file/transform/Converter.java diff --git a/spring-batch-infrastructure/src/main/java/org/springframework/batch/io/file/transform/Converter.java b/spring-batch-infrastructure/src/main/java/org/springframework/batch/io/file/transform/Converter.java deleted file mode 100644 index 94d06dac6..000000000 --- a/spring-batch-infrastructure/src/main/java/org/springframework/batch/io/file/transform/Converter.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright 2006-2007 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.springframework.batch.io.file.transform; - -/** - * Generic converter interface for transforming an object into another form for - * output or after input. - * - * TODO: replace with ItemTransformer - * - * @author Dave Syer - * - */ -public interface Converter { - - /** - * Central method of converter interface. - * - * @param input the input value - * @return an Object, usually of a different type - */ - Object convert(Object input); - -}