From c4dace7fb04a55776ed73cf3ec46ae0142ad8be1 Mon Sep 17 00:00:00 2001 From: Daniil Ovchinnikov Date: Thu, 28 May 2015 01:49:22 +0300 Subject: [PATCH] [groovy] store console state in workspace.xml (IDEA-140460) --- .../plugins/groovy/console/GroovyConsoleStateService.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/groovy/src/org/jetbrains/plugins/groovy/console/GroovyConsoleStateService.java b/plugins/groovy/src/org/jetbrains/plugins/groovy/console/GroovyConsoleStateService.java index 2f007bda5b28..9d136674185c 100644 --- a/plugins/groovy/src/org/jetbrains/plugins/groovy/console/GroovyConsoleStateService.java +++ b/plugins/groovy/src/org/jetbrains/plugins/groovy/console/GroovyConsoleStateService.java @@ -33,8 +33,7 @@ import java.util.Map; @State( name = "GroovyConsoleState", storages = { - @Storage(file = StoragePathMacros.PROJECT_FILE), - @Storage(file = StoragePathMacros.PROJECT_CONFIG_DIR + "/groovyConsole.xml", scheme = StorageScheme.DIRECTORY_BASED) + @Storage(file = StoragePathMacros.WORKSPACE_FILE) } ) public class GroovyConsoleStateService implements PersistentStateComponent {