blob: 5214d652d521190e9251113c1542003ac591a283 [file] [log] [blame]
package org.jetbrains.android.spellchecker;
import com.intellij.spellchecker.BundledDictionaryProvider;
/**
* @author Eugene.Kudelevsky
*/
public class AndroidBundledDictionaryProvider implements BundledDictionaryProvider {
@Override
public String[] getBundledDictionaries() {
return new String[] {"android.dic"};
}
}