| commit | 5f7d50ac8f82930cbb428c296c7c0f7ff34de7d1 | [log] [tgz] |
|---|---|---|
| author | jlabanca@google.com <jlabanca@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Mar 25 14:28:45 2011 +0000 |
| committer | jlabanca@google.com <jlabanca@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Mar 25 14:28:45 2011 +0000 |
| tree | 508a011090b2001688f4ff9fca438e69d2df38c2 | |
| parent | b3a2a02a2bc4a6e49db2c858fdd90df1b8eab7e2 [diff] |
Fixing HasDataPresenter#scheduleFinally to schedule the command in the argument, not the pendingStateCommand instance variable. Review at http://gwt-code-reviews.appspot.com/1391801 git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@9896 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/user/cellview/client/HasDataPresenter.java b/user/src/com/google/gwt/user/cellview/client/HasDataPresenter.java index b6409ad..3eecf69 100644 --- a/user/src/com/google/gwt/user/cellview/client/HasDataPresenter.java +++ b/user/src/com/google/gwt/user/cellview/client/HasDataPresenter.java
@@ -950,14 +950,15 @@ /** * Schedules the command. - * + * * <p> - * Protected so that subclasses can override to use an alternative - * scheduler. + * Protected so that subclasses can override to use an alternative scheduler. * </p> + * + * @param command the command to execute */ protected void scheduleFinally(ScheduledCommand command) { - Scheduler.get().scheduleFinally(pendingStateCommand); + Scheduler.get().scheduleFinally(command); } /**