Skip to content

Commit a425b2f

Browse files
Fixed ClassNotFoundException for PersistenceService
1 parent 1ab1048 commit a425b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ide-common/src/main/java/org/digma/intellij/plugin/persistence/PersistenceService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import com.intellij.openapi.components.Storage
88

99
// the @State annotation helps IntelliJ automatically serialize and save our state
1010
@State(
11-
name = "PersistenceService",
11+
name = "org.digma.intellij.plugin.persistence.PersistenceService",
1212
storages = [Storage("DigmaPersistence.xml")]
1313
)
1414
open class PersistenceService : PersistentStateComponent<PersistenceData> {

0 commit comments

Comments
 (0)