diff options
author | Joe Robinson <joe@lc8n.com> | 2010-11-04 14:25:51 +0000 |
---|---|---|
committer | Joe Robinson <joe@lc8n.com> | 2010-11-04 14:25:51 +0000 |
commit | d08fcfc67d443819881bce2a8ed2b56bd74b802b (patch) | |
tree | bf7107b64159f18c231cf3c908720b2c5d0f0f18 | |
parent | 777a5c9c98447c57baff529c409c3225e81a82b5 (diff) |
Removed space at end of output
-rw-r--r-- | bladictionary.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bladictionary.java b/bladictionary.java index 0691e7b..b2e64da 100644 --- a/bladictionary.java +++ b/bladictionary.java @@ -158,7 +158,7 @@ public class bladictionary { if(!result.equals("")) { - result = result.substring(0,result.length()-1)+";"; + result = result.trim()+";"; System.out.println(result); System.exit(0); } |