Skip to content
Snippets Groups Projects
Commit 1570004a authored by felmer's avatar felmer
Browse files

SSDM-2718: add words to dictionary.txt. Allow spaces between words of composed...

SSDM-2718: add words to dictionary.txt. Allow spaces between words of composed words in order to trigger spell checker of eclipse.

SVN: 35335
parent b6661009
No related branches found
No related tags found
No related merge requests found
......@@ -57,9 +57,10 @@ public class EnglishDictionary
while ((line = reader.readLine()) != null)
{
if (line.trim().length() > 0)
String trimmedLine = line.trim();
if (trimmedLine.length() > 0)
{
words.add(line.trim());
words.add(trimmedLine.replace(" ", ""));
}
}
......
......@@ -895,8 +895,18 @@ withTypeUsing
withVocabulary
withVocabularyUsing
YES
addAdditionalMethod
EntityWithPropertiesSortOptions
getMaterialProperty
getProperty
property
\ No newline at end of file
add Additional Method
Entity With Properties Sort Options
get Material Property
get Property
property
execute Service
I Service Executor
I Service Id
list Services
Service
Service Fetch Options
Service Perm Id
Service Sort Options
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment