Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java')
-rw-r--r--plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java b/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java
index db170ed3d31..a58fdc94630 100644
--- a/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java
+++ b/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java
@@ -43,6 +43,8 @@ public class OTEFolderImpl implements OTEServerFolder{
private static File BATCHES = new File(OTESERVER, "batches");
private static File JARCACHE = new File(OTESERVER, "runtimeCache");
private static File SERVERS = new File(OTESERVER, "servers");
+ private static File MISCFILES = new File(OTESERVER, "miscFiles");
+
private static SimpleDateFormat format = new SimpleDateFormat("yyyy_MM_dd___kk_mm_ss");
private File currentServerFolder;
@@ -190,6 +192,11 @@ public class OTEFolderImpl implements OTEServerFolder{
public File getCacheFolder(){
return JARCACHE;
}
+
+ @Override
+ public File getMiscFiles() {
+ return MISCFILES;
+ }
@Override
public File getNewServerFolder() {

Back to the top