Removed AssetsMojangOldLoader.java

This commit is contained in:
huanghongxun
2015-12-07 13:41:13 +08:00
parent d3ad805ad3
commit 8e2fa57868
11 changed files with 134 additions and 282 deletions

View File

@@ -62,6 +62,15 @@ public class Schedulers {
return NewThreadScheduler.getInstance();
}
/**
* {@link Scheduler} that queues work on the EventQueue thread to be executed on the Swing UI Thread.
*
* @return {@link NewThreadScheduler} instance
*/
public static Scheduler eventQueue() {
return EventQueueScheduler.getInstance();
}
/**
* {@link Scheduler} that queues work on an {@link Executor}.
* <p>