summaryrefslogtreecommitdiff
path: root/spellchecker
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2013-08-07 11:11:08 -0700
committerTor Norbye <tnorbye@google.com>2013-08-07 11:11:08 -0700
commit6739a8f0977b70ddc8a8283b169902da3f2eecb3 (patch)
tree5c5573c2ac01544f02d9318671aa558769726289 /spellchecker
parentc1ace1f7e1e49c81bb4b75377c99f07be340abfe (diff)
downloadidea-6739a8f0977b70ddc8a8283b169902da3f2eecb3.tar.gz
Snapshot af729d01433bb5bbd6ca93c0fdf9778b36d624ce from master branch of git://git.jetbrains.org/idea/community.git
Change-Id: I214dd066d0d27444a26166c0eae1a5aaf3705d49
Diffstat (limited to 'spellchecker')
-rw-r--r--spellchecker/src/com/intellij/spellchecker/jetbrains.dic4
-rw-r--r--spellchecker/src/com/intellij/spellchecker/state/ProjectDictionaryState.java8
2 files changed, 9 insertions, 3 deletions
diff --git a/spellchecker/src/com/intellij/spellchecker/jetbrains.dic b/spellchecker/src/com/intellij/spellchecker/jetbrains.dic
index 9ff44261756b..b745bef7c661 100644
--- a/spellchecker/src/com/intellij/spellchecker/jetbrains.dic
+++ b/spellchecker/src/com/intellij/spellchecker/jetbrains.dic
@@ -133,6 +133,7 @@ filesystem
filesystems
finalizer
finalizers
+firefox
foreach
formatter
freelist
@@ -201,6 +202,7 @@ jpdl
jquery
jsessionid
json
+junit
keepduplicates
keychain
keychains
@@ -353,6 +355,7 @@ prepend
prepended
prepends
preprocessor
+preprocessors
processlist
profiler
progressbar
@@ -456,6 +459,7 @@ sysdate
systimestamp
tablespace
taglib
+teamcity
temptable
throwable
timestamp
diff --git a/spellchecker/src/com/intellij/spellchecker/state/ProjectDictionaryState.java b/spellchecker/src/com/intellij/spellchecker/state/ProjectDictionaryState.java
index 6317fbdb08af..717af47285cd 100644
--- a/spellchecker/src/com/intellij/spellchecker/state/ProjectDictionaryState.java
+++ b/spellchecker/src/com/intellij/spellchecker/state/ProjectDictionaryState.java
@@ -30,10 +30,12 @@ import java.util.Set;
@State(
name = "ProjectDictionaryState",
- storages = {@Storage(file = StoragePathMacros.PROJECT_FILE),
+ storages = {
+ @Storage(file = StoragePathMacros.PROJECT_FILE),
@Storage(file = StoragePathMacros.PROJECT_CONFIG_DIR + "/dictionaries/",
- scheme = StorageScheme.DIRECTORY_BASED, stateSplitter = ProjectDictionarySplitter.class)})
-
+ scheme = StorageScheme.DIRECTORY_BASED, stateSplitter = ProjectDictionarySplitter.class)
+ }
+)
public class ProjectDictionaryState implements PersistentStateComponent<ProjectDictionaryState>{
@Property(surroundWithTag = false) @AbstractCollection(surroundWithTag = false, elementTypes = DictionaryState.class)