[warmup] IJPL-29: Rename classes to obtain more descriptive names

GitOrigin-RevId: b1b1d68a8a4e84da7b1b678574119a5c73876f74
This commit is contained in:
Konstantin Nisht
2022-12-28 14:28:58 +03:00
committed by intellij-monorepo-bot
parent 6e8005776f
commit d57c774ffe
16 changed files with 37 additions and 37 deletions

View File

@@ -17,7 +17,7 @@
<sdkEditorAdditionalOptionsProvider implementation="com.jetbrains.python.PythonSdkEditorAdditionalOptionsProvider"/>
<commandLineInspectionProjectConfigurator implementation="com.jetbrains.python.inspections.PythonPluginCommandLineInspectionProjectConfigurator"/>
<warmupConfiguration implementation="com.jetbrains.python.inspections.PythonPluginWarmupConfiguration"/>
<warmupConfigurator implementation="com.jetbrains.python.inspections.PythonPluginWarmupConfigurator"/>
</extensions>

View File

@@ -1,6 +0,0 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.jetbrains.python.inspections
import com.intellij.ide.warmup.WarmupConfigurationOfCLIConfigurator
class PythonPluginWarmupConfiguration : WarmupConfigurationOfCLIConfigurator(PythonPluginCommandLineInspectionProjectConfigurator())

View File

@@ -0,0 +1,6 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.jetbrains.python.inspections
import com.intellij.ide.warmup.WarmupConfiguratorOfCLIConfigurator
class PythonPluginWarmupConfigurator : WarmupConfiguratorOfCLIConfigurator(PythonPluginCommandLineInspectionProjectConfigurator())