Clearer status message; cleanup.
This commit is contained in:
parent
8958366a07
commit
dcb36ec338
1 changed files with 2 additions and 5 deletions
|
@ -93,7 +93,7 @@ public class TibetanKeyboard {
|
||||||
InputStreamReader isr = new InputStreamReader(url.openStream());
|
InputStreamReader isr = new InputStreamReader(url.openStream());
|
||||||
BufferedReader in = new BufferedReader(isr);
|
BufferedReader in = new BufferedReader(isr);
|
||||||
|
|
||||||
System.out.println("reading "+url.toString());
|
System.out.println("Reading Tibetan Keyboard " + url.toString());
|
||||||
String line;
|
String line;
|
||||||
|
|
||||||
charMap = new HashMap();
|
charMap = new HashMap();
|
||||||
|
@ -382,10 +382,7 @@ public class TibetanKeyboard {
|
||||||
* @param s the possible vowel
|
* @param s the possible vowel
|
||||||
*/
|
*/
|
||||||
public boolean isVowel(String s) {
|
public boolean isVowel(String s) {
|
||||||
if (vowelMap.containsKey(s))
|
return vowelMap.containsKey(s);
|
||||||
return true;
|
|
||||||
else
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue