Version 1.3.1: new Version class
[nikiroo-utils.git] / src / be / nikiroo / utils / IOUtils.java
index 1b70b0e783cee077af91067a07e792b6eb5af993..eb105e2698535e325ed602fc0b3ed50f7e0b16b4 100644 (file)
@@ -5,7 +5,6 @@ import java.awt.geom.AffineTransform;
 import java.awt.image.AffineTransformOp;
 import java.awt.image.BufferedImage;
 import java.io.BufferedReader;
-import java.io.ByteArrayOutputStream;
 import java.io.File;
 import java.io.FileInputStream;
 import java.io.FileOutputStream;
@@ -330,31 +329,6 @@ public class IOUtils {
                return image;
        }
 
-       /**
-        * Return the version of the program if it follows the VERSION convention
-        * (i.e., if it has a file called VERSION containing the version as a
-        * {@link String} on its binary root).
-        * 
-        * @return the version, or NULL
-        */
-       public static String getVersion() {
-               String version = null;
-
-               InputStream in = openResource("VERSION");
-               if (in != null) {
-                       try {
-                               ByteArrayOutputStream ba = new ByteArrayOutputStream();
-                               write(in, ba);
-                               in.close();
-
-                               version = ba.toString("UTF-8");
-                       } catch (IOException e) {
-                       }
-               }
-
-               return version;
-       }
-
        /**
         * Open the given /-separated resource (from the binary root).
         *