Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / bpmn / mock / FileUtil.java
index 6a3668b..e74dece 100644 (file)
@@ -34,51 +34,50 @@ import org.slf4j.LoggerFactory;
  * </p>
  * 
  * @author
- * @version     ONAP  Sep 15, 2017
+ * @version ONAP Sep 15, 2017
  */
 public class FileUtil {
 
     private static final Logger logger = LoggerFactory.getLogger(FileUtil.class);
-    
-       /**
-        * Read the specified resource file and return the contents as a String.
-        * 
-        * @param fileName Name of the resource file
-        * @return the contents of the resource file as a String
-        * @throws IOException if there is a problem reading the file
-        */
-       public static String readResourceFile(String fileName) {
-               InputStream stream;
-               try {
-                       stream = getResourceAsStream(fileName);
-                       byte[] bytes;
-                       bytes = new byte[stream.available()];
-                       if(stream.read(bytes) > 0) {
-                               stream.close();
-                               return new String(bytes);
-                       } else {
-                               stream.close();
-                               return "";
-                       }
-               } catch (IOException e) {
-                   logger.debug("Exception:", e);
-                       return "";
-               }
-       }
-       
-       /**
-        * Get an InputStream for the resource specified.
-        * 
-        * @param resourceName Name of resource for which to get InputStream.
-        * @return an InputStream for the resource specified.
-        * @throws IOException If we can't get the InputStream for whatever reason.
-        */
-       private static InputStream getResourceAsStream(String resourceName) throws IOException {
-               InputStream stream =
-                               FileUtil.class.getClassLoader().getResourceAsStream(resourceName);
-               if (stream == null) {
-                       throw new IOException("Can't access resource '" + resourceName + "'");
-               }
-               return stream;
-       }               
+
+    /**
+     * Read the specified resource file and return the contents as a String.
+     * 
+     * @param fileName Name of the resource file
+     * @return the contents of the resource file as a String
+     * @throws IOException if there is a problem reading the file
+     */
+    public static String readResourceFile(String fileName) {
+        InputStream stream;
+        try {
+            stream = getResourceAsStream(fileName);
+            byte[] bytes;
+            bytes = new byte[stream.available()];
+            if (stream.read(bytes) > 0) {
+                stream.close();
+                return new String(bytes);
+            } else {
+                stream.close();
+                return "";
+            }
+        } catch (IOException e) {
+            logger.debug("Exception:", e);
+            return "";
+        }
+    }
+
+    /**
+     * Get an InputStream for the resource specified.
+     * 
+     * @param resourceName Name of resource for which to get InputStream.
+     * @return an InputStream for the resource specified.
+     * @throws IOException If we can't get the InputStream for whatever reason.
+     */
+    private static InputStream getResourceAsStream(String resourceName) throws IOException {
+        InputStream stream = FileUtil.class.getClassLoader().getResourceAsStream(resourceName);
+        if (stream == null) {
+            throw new IOException("Can't access resource '" + resourceName + "'");
+        }
+        return stream;
+    }
 }