From c603bc1c9c8a960c9ed33367d5aa8f9c00be161e Mon Sep 17 00:00:00 2001 From: Andy Jury Date: Wed, 20 Apr 2016 17:00:15 -0700 Subject: feature[ats_ATS281002]: Make default behavior backward compatible. --- .../src/org/eclipse/osee/ote/io/internal/OTEFolderImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 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 6955d0aa73a..aee418721cb 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 @@ -52,8 +52,8 @@ public class OTEFolderImpl implements OTEServerFolder{ File oteStationParent = new File(OtePropertiesCore.oteServerFolder.getValue("undefined")); if (!oteStationParent.exists() || !oteStationParent.isDirectory()) { OseeLog.log(OTEFolderImpl.class, Level.WARNING, "ote server folder parent does not exist folder -" + oteStationParent.getAbsolutePath()); - oteStationParent = new File(OtePropertiesCore.userHome.getValue(), "stations"); - return new File(oteStationParent, OtePropertiesCore.oteStationName.getValue("unknown-station")); + oteStationParent = new File(OtePropertiesCore.userHome.getValue(), "OTESERVER"); + return oteStationParent; } File stationsFolder = new File(oteStationParent, "stations"); File stationFolder = new File(stationsFolder, OtePropertiesCore.oteStationName.getValue("unknown-station")); -- cgit v1.2.3