HaxeCheckstyle/haxe-checkstyle

View on GitHub
src/checkstyle/utils/DummyThread.hx

Summary

Maintainability
Test Coverage
package checkstyle.utils;

class DummyThread {
    public static function create(f:Void -> Void) {
        f();
    }
}