Bug 377708 - [console] Mixed-case commands from org.eclipse.equinox.app
not working anymore.
diff --git a/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/command/adapter/CommandProviderAdapter.java b/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/command/adapter/CommandProviderAdapter.java
index 08de8e8..f784835 100755
--- a/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/command/adapter/CommandProviderAdapter.java
+++ b/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/command/adapter/CommandProviderAdapter.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2010, 2011 IBM Corporation, SAP AG.
+ * Copyright (c) 2010, 2012 IBM Corporation, SAP AG.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -53,7 +53,7 @@
 
 	private Method findCommand(Object commandName) {
 		for (Method command : commands) {
-			if (command.getName().equals(commandName))
+			if (command.getName().equalsIgnoreCase(commandName.toString()))
 				return command;
 		}
 		throw new IllegalArgumentException("Cannot find the command method for: " + commandName);