revert an older workaround for a pub/vm failure (#16749)

This commit is contained in:
Devon Carew 2018-04-19 13:11:42 -07:00 committed by GitHub
parent 48ab8648bf
commit c058c6a6d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,14 +4,6 @@
import 'package:flutter_tools/executable.dart' as executable;
// Temporary workaround for https://github.com/flutter/flutter/issues/9727
bool get initializeLibNotify {
final DateTime date = new DateTime.now();
return date.month == 1;
}
void main(List<String> args) {
// ignore: UNUSED_LOCAL_VARIABLE
final bool x = initializeLibNotify;
executable.main(args);
}