fixed a terrible bug in DictionarySettings (sorry!)
This commit is contained in:
parent
bd203b5cc3
commit
81dccdb317
1 changed files with 8 additions and 8 deletions
|
@ -22,18 +22,18 @@ public class DictionarySettings
|
||||||
|
|
||||||
public DictionarySettings ( boolean valid, boolean enabled, boolean local, String pathOrUrl )
|
public DictionarySettings ( boolean valid, boolean enabled, boolean local, String pathOrUrl )
|
||||||
{
|
{
|
||||||
boolean dictionaryValid = valid ;
|
dictionaryValid = valid ;
|
||||||
boolean dictionaryEnabled = enabled ;
|
dictionaryEnabled = enabled ;
|
||||||
boolean dictionaryLocal = local ;
|
dictionaryLocal = local ;
|
||||||
String dictionaryPath = pathOrUrl ;
|
dictionaryPath = pathOrUrl ;
|
||||||
}
|
}
|
||||||
|
|
||||||
public DictionarySettings ( boolean enabled, boolean local, String pathOrUrl )
|
public DictionarySettings ( boolean enabled, boolean local, String pathOrUrl )
|
||||||
{
|
{
|
||||||
boolean dictionaryValid = true ;
|
dictionaryValid = true ;
|
||||||
boolean dictionaryEnabled = enabled ;
|
dictionaryEnabled = enabled ;
|
||||||
boolean dictionaryLocal = local ;
|
dictionaryLocal = local ;
|
||||||
String dictionaryPath = pathOrUrl ;
|
dictionaryPath = pathOrUrl ;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean equal ( DictionarySettings ds )
|
public boolean equal ( DictionarySettings ds )
|
||||||
|
|
Loading…
Reference in a new issue