Skip to content

Commit

Permalink
Removing registration of dependencies as singleton
Browse files Browse the repository at this point in the history
  • Loading branch information
n-verbitsky committed Jun 3, 2020
1 parent 9526b6b commit dbf631f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected void configure() {
bind(IConfiguration.class).to(getConfigurationImplementation());
bind(IElementFactory.class).to(getElementFactoryImplementation());
bind(IScreenFactory.class).to(getScreenFactoryImplementation());
bind(ITouchActionsConfiguration.class).to(getTouchActionsConfigurationImplementation()).in(Singleton.class);
bind(ITouchActions.class).to(getTouchActionsImplementation()).in(Singleton.class);
bind(ITouchActionsConfiguration.class).to(getTouchActionsConfigurationImplementation());
bind(ITouchActions.class).to(getTouchActionsImplementation());
}
}

0 comments on commit dbf631f

Please sign in to comment.