You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ma...@apache.org on 2007/12/06 23:35:35 UTC

svn commit: r601887 - /ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/conflict/StrictConflictManagerTest.java

Author: maartenc
Date: Thu Dec  6 14:35:35 2007
New Revision: 601887

URL: http://svn.apache.org/viewvc?rev=601887&view=rev
Log:
Style

Modified:
    ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/conflict/StrictConflictManagerTest.java

Modified: ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/conflict/StrictConflictManagerTest.java
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/conflict/StrictConflictManagerTest.java?rev=601887&r1=601886&r2=601887&view=diff
==============================================================================
--- ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/conflict/StrictConflictManagerTest.java (original)
+++ ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/conflict/StrictConflictManagerTest.java Thu Dec  6 14:35:35 2007
@@ -29,17 +29,17 @@
 public class StrictConflictManagerTest extends TestCase {
     private Ivy ivy;
 
-    private File _cache;
+    private File cache;
 
     protected void setUp() throws Exception {
         ivy = new Ivy();
         ivy.configure(StrictConflictManagerTest.class.getResource("ivysettings-strict-test.xml"));
-        _cache = new File("build/cache");
-        _cache.mkdirs();
+        cache = new File("build/cache");
+        cache.mkdirs();
     }
 
     protected void tearDown() throws Exception {
-        FileUtil.forceDelete(_cache);
+        FileUtil.forceDelete(cache);
     }
 
     public void testInitFromConf() throws Exception {