Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / test / java / org / wamblee / io / StreamResourceTest.java
index 7ec09ac7fe5b055967c3e7d6d99fc7216b99ba09..0865b0dfeae96d985eedb6675448f44df3ef164b 100644 (file)
@@ -22,20 +22,19 @@ import java.io.FileInputStream;
 import java.io.IOException;
 import java.io.InputStream;
 
-
 /**
  * Tests the stream resource.
- *
+ * 
  * @author Erik Brakkee
  */
 public class StreamResourceTest extends TestCase {
     /**
      * Loads an existing resource. Verifies it is found.
-     *
+     * 
      */
     public void testResourceFound() throws IOException {
-        File file = new File(FileSystemUtils.getTestInputDir(
-                    StreamResourceTest.class), "myresource.txt");
+        File file = new File(FileSystemUtils
+            .getTestInputDir(StreamResourceTest.class), "myresource.txt");
         assertTrue(file.canRead());
 
         InputStream fileIs = new FileInputStream(file);