File tree 1 file changed +4
-3
lines changed
squidCore/src/main/java/org/cirdles/squid/utilities/stateUtilities
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 19
19
20
20
import org .cirdles .squid .exceptions .SquidException ;
21
21
import org .cirdles .squid .tasks .taskDesign .TaskDesign ;
22
+ import org .cirdles .squid .tasks .taskDesign .TaskDesignGeochronBlank ;
22
23
23
24
import java .io .File ;
24
25
import java .io .IOException ;
@@ -143,15 +144,15 @@ public static SquidPersistentState getExistingPersistentState() throws SquidExce
143
144
}
144
145
myInstance = new SquidPersistentState ();
145
146
myInstance .serializeSelf ();
146
- myInstance .setTaskDesign (new TaskDesign ());
147
+ myInstance .setTaskDesign (new TaskDesignGeochronBlank ());
147
148
148
149
// check to update TaskDesign
149
150
TaskDesign taskDesign = myInstance .getTaskDesign ();
150
151
if (taskDesign == null ) {
151
- taskDesign = new TaskDesign ();
152
+ taskDesign = new TaskDesignGeochronBlank ();
152
153
myInstance .setTaskDesign (taskDesign );
153
154
} else if (taskDesign .getRatioNames () == null ) {
154
- taskDesign = new TaskDesign ();
155
+ taskDesign = new TaskDesignGeochronBlank ();
155
156
myInstance .setTaskDesign (taskDesign );
156
157
}
157
158
You can’t perform that action at this time.
0 commit comments