From dcb36ec338f28479272aea653d36ef1ec900f3ae Mon Sep 17 00:00:00 2001 From: dchandler Date: Wed, 14 May 2003 02:37:28 +0000 Subject: [PATCH] Clearer status message; cleanup. --- source/org/thdl/tib/text/TibetanKeyboard.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/source/org/thdl/tib/text/TibetanKeyboard.java b/source/org/thdl/tib/text/TibetanKeyboard.java index c718228..fc6ca61 100644 --- a/source/org/thdl/tib/text/TibetanKeyboard.java +++ b/source/org/thdl/tib/text/TibetanKeyboard.java @@ -93,7 +93,7 @@ public class TibetanKeyboard { InputStreamReader isr = new InputStreamReader(url.openStream()); BufferedReader in = new BufferedReader(isr); - System.out.println("reading "+url.toString()); + System.out.println("Reading Tibetan Keyboard " + url.toString()); String line; charMap = new HashMap(); @@ -382,10 +382,7 @@ public class TibetanKeyboard { * @param s the possible vowel */ public boolean isVowel(String s) { - if (vowelMap.containsKey(s)) - return true; - else - return false; + return vowelMap.containsKey(s); } /**