From 571c7fc80134634ca8043f823d48d301e69337cb Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 22 Mar 2011 09:09:39 +0000 Subject: [PATCH] BATCH-1532: fix javadocs --- .../springframework/batch/item/xml/StaxUtils.java | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/xml/StaxUtils.java b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/xml/StaxUtils.java index ec2fdf971..1bef27f68 100644 --- a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/xml/StaxUtils.java +++ b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/xml/StaxUtils.java @@ -16,17 +16,18 @@ package org.springframework.batch.item.xml; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.springframework.util.Assert; -import org.springframework.util.ClassUtils; +import java.lang.reflect.Constructor; +import java.lang.reflect.Method; import javax.xml.stream.XMLEventReader; import javax.xml.stream.XMLEventWriter; import javax.xml.transform.Result; import javax.xml.transform.Source; -import java.lang.reflect.Constructor; -import java.lang.reflect.Method; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.springframework.util.Assert; +import org.springframework.util.ClassUtils; /** * This class provides a little bit of indirection to avoid ugly conditional object creation. It is unfortunately @@ -39,8 +40,6 @@ import java.lang.reflect.Method; * * @author Josh Long * - * @see org.springframework.util.xml.StaxUtils - * @see org.springframework.util.xml.StaxSource * @see org.springframework.xml.transform.StaxSource */ public abstract class StaxUtils {