mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
Add breaking changes for TM plugin 2022.3 (#860)
This commit is contained in:
parent
e03661b24c
commit
a242920ac3
@ -82,6 +82,44 @@ _Early Access Program_ (EAP) releases of upcoming versions are available [here](
|
||||
|
||||
### IntelliJ Platform 2022.3
|
||||
|
||||
### TextMate Plugin 2022.3
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.PreferencesRegistry` class now interface
|
||||
: Construct and mutate the `org.jetbrains.plugins.textmate.language.preferences.PreferencesRegistryImpl` instead.
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.PreferencesRegistry.fillFromPList(CharSequence, Plist)` method removed
|
||||
: Use `org.jetbrains.plugins.textmate.language.preferences.PreferencesRegistryImpl.fillFromPList(CharSequence, Plist)` instead.
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.PreferencesRegistry.clear()` method removed
|
||||
: Use `org.jetbrains.plugins.textmate.language.preferences.PreferencesRegistryImpl.clear()` instead.
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.PreferencesRegistry()` constructor removed
|
||||
: Instantiate `org.jetbrains.plugins.textmate.language.preferences.PreferencesRegistryImpl` instead.
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.ShellVariablesRegistry` class now interface
|
||||
: Construct and mutate the `org.jetbrains.plugins.textmate.language.preferences.ShellVariablesRegistryImpl` instead.
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.ShellVariablesRegistry.fillVariablesFromPlist(CharSequence, Plist)` method removed
|
||||
: Use `org.jetbrains.plugins.textmate.language.preferences.ShellVariablesRegistryImpl.fillVariablesFromPlist(CharSequence, Plist)` instead.
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.ShellVariablesRegistry.clear()` method removed
|
||||
: Use `org.jetbrains.plugins.textmate.language.preferences.ShellVariablesRegistryImpl.clear()` instead.
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.ShellVariablesRegistry()` constructor removed
|
||||
: Instantiate `org.jetbrains.plugins.textmate.language.preferences.ShellVariablesRegistryImpl` instead.
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.SnippetsRegistry` class now interface
|
||||
: Construct and mutate the `org.jetbrains.plugins.textmate.language.preferences.SnippetsRegistryImpl` instead.
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.SnippetsRegistry.register(TextMateSnippet)` method removed
|
||||
: Use `org.jetbrains.plugins.textmate.language.preferences.SnippetsRegistryImpl.register(TextMateSnippet)` instead.
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.SnippetsRegistry.clear()` method removed
|
||||
: Use `org.jetbrains.plugins.textmate.language.preferences.SnippetsRegistryImpl.clear()` instead.
|
||||
|
||||
`org.jetbrains.plugins.textmate.language.preferences.SnippetsRegistry()` constructor removed
|
||||
: Instantiate `org.jetbrains.plugins.textmate.language.preferences.SnippetsRegistryImpl()` instead.
|
||||
|
||||
## 2022.2
|
||||
|
||||
### IntelliJ Platform 2022.2
|
||||
|
Loading…
x
Reference in New Issue
Block a user