Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/command/queue/CommandQueue.java

Diff revisions: vs.
  @@ -1,21 +1,21 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.GWT.client.command.queue;
3 -
4 - import com.google.gwt.user.client.*;
5 -
6 - /**
7 - * A queue which immediately executes commands upon queuing.
8 - */
9 - public class CommandQueue extends CommandQueueBase {
10 - @Override
11 - public void add( Command pCommand ) {
12 - if ( addImpl( pCommand ) ) {
13 - run();
14 - }
15 - }
16 -
17 - @Override
18 - protected void scheduleRunIteration() {
19 - run();
20 - }
21 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.GWT.client.command.queue;
3 +
4 + import com.google.gwt.user.client.*;
5 +
6 + /**
7 + * A queue which immediately executes commands upon queuing.
8 + */
9 + public class CommandQueue extends CommandQueueBase {
10 + @Override
11 + public void add( Command pCommand ) {
12 + if ( addImpl( pCommand ) ) {
13 + run();
14 + }
15 + }
16 +
17 + @Override
18 + protected void scheduleRunIteration() {
19 + run();
20 + }
21 + }