mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[wsm] IJPL-221118 Disable workspace separation by default in OptionsDirectoryProcessor
Use `false` as default value for `ide.workspace.model.per.environment.model.separation` registry flag in `OptionsDirectoryProcessor` to align behavior with other usages of the flag. GitOrigin-RevId: 61b160ef70558ed6f8953376862c20d6ff8f4b1c
This commit is contained in:
committed by
intellij-monorepo-bot
parent
bde7a3cae5
commit
b2e512654c
@@ -21,7 +21,7 @@ internal fun transferOptionsToRemote(optionsDir: Path, project: Project): Path {
|
||||
val eelDescriptor = project.getEelDescriptor()
|
||||
val machine = project.getEelMachine()
|
||||
|
||||
if (!Registry.`is`("ide.workspace.model.per.environment.model.separation", true)) {
|
||||
if (!Registry.`is`("ide.workspace.model.per.environment.model.separation", false)) {
|
||||
return transferLocalContentToRemote(optionsDir, EelPathUtils.TransferTarget.Temporary(eelDescriptor))
|
||||
}
|
||||
val internalName = machine.internalName
|
||||
|
||||
Reference in New Issue
Block a user