A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / corext / util / IOCloser.java
index 1e16693..c985574 100644 (file)
@@ -16,7 +16,7 @@ import java.io.Reader;
 
 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
 
-//import net.sourceforge.phpdt.internal.ui.JavaPlugin;
+// import net.sourceforge.phpdt.internal.ui.JavaPlugin;
 
 public class IOCloser {
        public static void perform(Reader reader, InputStream stream) {
@@ -26,8 +26,9 @@ public class IOCloser {
                        PHPeclipsePlugin.log(e);
                }
        }
-       
-       public static void rethrows(Reader reader, InputStream stream) throws IOException {
+
+       public static void rethrows(Reader reader, InputStream stream)
+                       throws IOException {
                if (reader != null) {
                        reader.close();
                        return;
@@ -36,6 +37,5 @@ public class IOCloser {
                        stream.close();
                        return;
                }
-       }       
+       }
 }
-