Reversing unintentionally pushed change: don't share Timer instances.

This commit is contained in:
akwizgran
2014-01-16 19:31:28 +00:00
parent 569b59624a
commit 44bb9134d4
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ public class AndroidSystemModule extends AbstractModule {
protected void configure() {
bind(Clock.class).to(SystemClock.class);
bind(Timer.class).toInstance(new SystemTimer());
bind(Timer.class).to(SystemTimer.class);
bind(SeedProvider.class).to(AndroidSeedProvider.class);
bind(FileUtils.class).to(AndroidFileUtils.class);
}