Author: adietish
Date: 2011-08-23 08:00:56 -0400 (Tue, 23 Aug 2011)
New Revision: 34166
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/egit/internal/ui/commands/CommitAndPushHandler.java
Log:
corrected erroneous static declaration of method (was: static now: instance method)
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/egit/internal/ui/commands/CommitAndPushHandler.java
===================================================================
---
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/egit/internal/ui/commands/CommitAndPushHandler.java 2011-08-23
11:46:46 UTC (rev 34165)
+++
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/egit/internal/ui/commands/CommitAndPushHandler.java 2011-08-23
12:00:56 UTC (rev 34166)
@@ -26,7 +26,7 @@
return null;
}
- private static boolean executeCommand(String commandId, ISelection selection) throws
ExecutionException {
+ private boolean executeCommand(String commandId, ISelection selection) throws
ExecutionException {
if (!(selection instanceof IStructuredSelection)) {
throw new ExecutionException(NLS.bind("Could not execute command
\"{0}\" since there's no valid selection",
commandId));
Show replies by date