mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
kotlin 1.2 — use [] instead of arrayOf for storages
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
package com.jetbrains.python.sdk
|
||||
|
||||
import com.intellij.openapi.components.PersistentStateComponent
|
||||
@@ -109,7 +109,7 @@ class SettingsState {
|
||||
var virtualEnvActivate = true
|
||||
}
|
||||
|
||||
@State(name = "PyVirtualEnvTerminalCustomizer", storages = arrayOf(Storage("python-terminal.xml")))
|
||||
@State(name = "PyVirtualEnvTerminalCustomizer", storages = [(Storage("python-terminal.xml"))])
|
||||
class PyVirtualEnvTerminalSettings : PersistentStateComponent<SettingsState> {
|
||||
var myState = SettingsState()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user