From 467da823056ceee20b43bf5a4864372f604543f0 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Tue, 9 Jun 2009 09:56:23 +0000 Subject: [PATCH] whitespace git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@782935 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/tools/ant/types/DirSetTest.java | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/tests/junit/org/apache/tools/ant/types/DirSetTest.java b/src/tests/junit/org/apache/tools/ant/types/DirSetTest.java index e5812f088..1aa5e99a3 100644 --- a/src/tests/junit/org/apache/tools/ant/types/DirSetTest.java +++ b/src/tests/junit/org/apache/tools/ant/types/DirSetTest.java @@ -65,20 +65,20 @@ public class DirSetTest extends AbstractFileSetTest { public void testToString() throws Exception { File tmp = File.createTempFile("DirSetTest", ""); try { - tmp.delete(); - File a = new File(tmp, "a"); - a.mkdirs(); - File b = new File(tmp, "b"); - File bc = new File(b, "c"); - bc.mkdirs(); - new FileOutputStream(new File(a, "x")).close(); - new FileOutputStream(new File(b, "x")).close(); - new FileOutputStream(new File(bc, "x")).close(); - DirSet ds = new DirSet(); - ds.setProject(getProject()); - ds.setDir(tmp); - ds.setIncludes("b/"); - assertEquals("b;b" + File.separator + "c", ds.toString()); + tmp.delete(); + File a = new File(tmp, "a"); + a.mkdirs(); + File b = new File(tmp, "b"); + File bc = new File(b, "c"); + bc.mkdirs(); + new FileOutputStream(new File(a, "x")).close(); + new FileOutputStream(new File(b, "x")).close(); + new FileOutputStream(new File(bc, "x")).close(); + DirSet ds = new DirSet(); + ds.setProject(getProject()); + ds.setDir(tmp); + ds.setIncludes("b/"); + assertEquals("b;b" + File.separator + "c", ds.toString()); } finally { new File(tmp, "a/x").delete(); new File(tmp, "a").delete();