Ignore case when checking remote commands.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1497 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2004-08-23 06:24:07 +00:00
parent 1f98a87829
commit bd31773569
@@ -21,13 +21,13 @@ public class Remote extends DJClient
{
super.didInit();
if (_command.equals("play")) {
if (_command.equalsIgnoreCase("play")) {
djobj.play();
} else if (_command.equals("pause")) {
} else if (_command.equalsIgnoreCase("pause")) {
djobj.pause();
} else if (_command.equals("stop")) {
} else if (_command.equalsIgnoreCase("stop")) {
djobj.stop();
} else {