XmlUtil cleanup
[jpim.git] / src / de / j32 / util / Util.java
index 95a3f78..db43919 100644 (file)
@@ -8,25 +8,29 @@ import java.util.Iterator;
 
 public class Util {
 
-       public static <E> E nonnull(E ob) {
+       public static <E> E nonnull(E ob)
+       {
                if (ob == null)
                        throw new NullPointerException();
                return ob;
        }
 
        public static void transfer(InputStream is, OutputStream os)
-                       throws IOException {
+                       throws IOException
+       {
                byte[] buffer = new byte[16384];
                int len = -1;
                while ((len = is.read(buffer)) != -1)
                        os.write(buffer, 0, len);
        }
 
-       public static void nothrowClose(Closeable c) {
+       public static void nothrowClose(Closeable c)
+       {
                if (c != null) {
                        try {
                                c.close();
-                       } catch (IOException e) {}
+                       }
+                       catch (IOException e) {}
                }
        }