File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
clion-plugin/src/main/kotlin/org/utbot/cpp/clion/plugin Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,6 @@ class UTBotAllProjectSettings(val project: Project) {
69
69
}
70
70
71
71
data class UTBotSettingsModel (
72
- var projectSettings : UTBotProjectStoredSettings .State ,
73
- var globalSettings : UTBotProjectIndependentSettings .State ,
72
+ val projectSettings : UTBotProjectStoredSettings .State ,
73
+ val globalSettings : UTBotProjectIndependentSettings .State ,
74
74
)
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import java.awt.event.KeyEvent
17
17
18
18
class UTBotWizard (private val project : Project ) : AbstractWizard<UTBotBaseWizardStep>(" UTBot: Quickstart" , project) {
19
19
// copy of settings to make changes during wizard steps
20
- private val mySettingsModel = UTBotSettingsModel (project.settings.storedSettings, projectIndependentSettings)
20
+ private val mySettingsModel = UTBotSettingsModel (project.settings.storedSettings.copy() , projectIndependentSettings.copy() )
21
21
22
22
init {
23
23
addStep(IntroStep ())
You can’t perform that action at this time.
0 commit comments