From 33371c51ccff396d56aef6ba9aa655ebb41ea0dd Mon Sep 17 00:00:00 2001 From: dsyer Date: Tue, 20 Nov 2007 09:00:24 +0000 Subject: [PATCH] Javadocs --- .../io/file/support/separator/RecordSeparatorPolicy.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/infrastructure/src/main/java/org/springframework/batch/io/file/support/separator/RecordSeparatorPolicy.java b/infrastructure/src/main/java/org/springframework/batch/io/file/support/separator/RecordSeparatorPolicy.java index f4c9dce11..c1f5851ef 100644 --- a/infrastructure/src/main/java/org/springframework/batch/io/file/support/separator/RecordSeparatorPolicy.java +++ b/infrastructure/src/main/java/org/springframework/batch/io/file/support/separator/RecordSeparatorPolicy.java @@ -31,11 +31,11 @@ public interface RecordSeparatorPolicy { /** * Signal the end of a record based on the content of a line, being the * latest line read from an input source. The input is what you would expect - * from {@link BufferedReader#readLine()} - i.e. no line spearator character + * from {@link BufferedReader#readLine()} - i.e. no line separator character * at the end. But it might have line separators embedded in it. * * @param line a String without a newline character at the end. - * @return tru if this line is the end of a record. + * @return true if this line is the end of a record. */ boolean isEndOfRecord(String line); @@ -48,7 +48,7 @@ public interface RecordSeparatorPolicy { String postProcess(String record); /** - * Preprocess a line befor eit is appended to a record. Can be used to + * Preprocess a line before it is appended to a record. Can be used to * remove a prefix or line-continuation marker. * * @param line the current line.