Apply formatting
[proteocache.git] / engine / compbio / engine / archive / Archive.java
index 392a737..8aad2aa 100644 (file)
@@ -20,7 +20,7 @@ public class Archive {
                String path = ph.getProperty("archive.path");
                assert (null != path);
 
-               if (isAbsolutePath (path)) {
+               if (isAbsolutePath(path)) {
                        archivepath = path;
                } else {
                        String abspath = ProteoCachePropertyHelperManager.getLocalPath();
@@ -31,20 +31,19 @@ public class Archive {
                }
        }
 
-       private boolean isAbsolutePath (String path) {
-                return (new File(path).isAbsolute());
+       private boolean isAbsolutePath(String path) {
+               return (new File(path).isAbsolute());
        }
-       
-       private boolean isDirExists (String path) throws IOException {
+
+       private boolean isDirExists(String path) throws IOException {
                archive = new File(path);
                return archive.getCanonicalFile().isDirectory();
        }
-       
 
-       public boolean addArchivedJob (ArchivedJob job) {
+       public boolean addArchivedJob(ArchivedJob job) {
                return true;
        }
-       
+
        public String createJob(String jobid) {
                return archivepath + "/" + jobid + ".tar.gz";
        }