mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Fix according to review IDEA-CR-11224: Store CCSetting in other.xml
This commit is contained in:
@@ -29,6 +29,7 @@
|
||||
<extensions defaultExtensionNs="Edu">
|
||||
<studyActionsProvider implementation="com.jetbrains.edu.coursecreator.CCStudyActionsProvider"/>
|
||||
<studyActionListener implementation="com.jetbrains.edu.coursecreator.CCStudyActionListener"/>
|
||||
<optionsProvider instance="com.jetbrains.edu.coursecreator.settings.CCOptions"/>
|
||||
</extensions>
|
||||
|
||||
<project-components>
|
||||
@@ -85,8 +86,4 @@
|
||||
<action id="UnpackCourse" class="com.jetbrains.edu.coursecreator.actions.CCFromCourseArchive"/>
|
||||
</actions>
|
||||
|
||||
<extensions defaultExtensionNs="Edu">
|
||||
<optionsProvider instance="com.jetbrains.edu.coursecreator.settings.CCOptions"/>
|
||||
</extensions>
|
||||
|
||||
</idea-plugin>
|
||||
+1
-1
@@ -6,7 +6,7 @@ import com.intellij.openapi.components.State;
|
||||
import com.intellij.openapi.components.Storage;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
@State(name = "CCSettings", storages = @Storage("cc_settings.xml"))
|
||||
@State(name = "CCSettings", storages = @Storage("other.xml"))
|
||||
public class CCSettings implements PersistentStateComponent<CCSettings.State> {
|
||||
private CCSettings.State myState = new CCSettings.State();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user