Remove ForumPersistentData

This commit is contained in:
Torsten Grote
2016-07-27 17:23:33 -03:00
parent e782e699fe
commit d8272d875b
7 changed files with 98 additions and 177 deletions

View File

@@ -4,7 +4,6 @@ import android.app.Application;
import org.briarproject.android.api.AndroidNotificationManager;
import org.briarproject.android.api.ReferenceManager;
import org.briarproject.android.forum.ForumPersistentData;
import org.briarproject.api.crypto.CryptoComponent;
import org.briarproject.api.crypto.PublicKey;
import org.briarproject.api.crypto.SecretKey;
@@ -137,10 +136,4 @@ public class AppModule {
eventBus.addListener(notificationManager);
return notificationManager;
}
@Provides
@Singleton
ForumPersistentData provideForumPersistence() {
return new ForumPersistentData();
}
}