fix persistance

This commit is contained in:
Ernir Erlingsson
2016-06-14 23:53:05 +02:00
parent a11e30c2b3
commit 69b0bec033
2 changed files with 5 additions and 2 deletions

View File

@@ -140,7 +140,7 @@ public class AppModule {
@Provides
@Singleton
ForumPersistentData provideForumPersistence(ForumPersistentData fpd) {
return fpd;
ForumPersistentData provideForumPersistence() {
return new ForumPersistentData();
}
}