From d0e9cd3ccd877c3b3e0843eeaf716bbe52e46d23 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Thu, 21 Aug 2008 08:10:45 +0000 Subject: [PATCH] typo git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@687632 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/tools/ant/util/LayoutPreservingProperties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/util/LayoutPreservingProperties.java b/src/main/org/apache/tools/ant/util/LayoutPreservingProperties.java index 5c07e7c28..89a9c0859 100644 --- a/src/main/org/apache/tools/ant/util/LayoutPreservingProperties.java +++ b/src/main/org/apache/tools/ant/util/LayoutPreservingProperties.java @@ -38,7 +38,7 @@ import java.util.Properties; * present in the input stream from which it was loaded.

*

The class defers the usual work of the java.util.Properties * class to there, but it also keeps track of the contents of the - * input stream from which it was loaded (if applicable), so that in can + * input stream from which it was loaded (if applicable), so that it can * write out the properties in as close a form as possible to the input.

* If no changes occur to property values, the output should be the same * as the input, except for the leading date stamp, as normal for a @@ -259,7 +259,7 @@ public class LayoutPreservingProperties extends Properties { osw.write("#" + (new Date()).toString() + LS); boolean writtenSep = false; - for (Iterator i = logicalLines.iterator();i.hasNext();) { + for (Iterator i = logicalLines.iterator(); i.hasNext();) { LogicalLine line = (LogicalLine) i.next(); if (line instanceof Pair) { if (((Pair)line).isNew()) {