Remove TransactionManager from blog's BaseViewModel

This commit is contained in:
Torsten Grote
2021-03-16 16:33:56 -03:00
parent d3b855318c
commit 2f969775d8

View File

@@ -49,7 +49,6 @@ abstract class BaseViewModel extends DbViewModel implements EventListener {
private static final Logger LOG = getLogger(BaseViewModel.class.getName());
private final EventBus eventBus;
protected final TransactionManager db;
protected final IdentityManager identityManager;
protected final AndroidNotificationManager notificationManager;
protected final BlogManager blogManager;
@@ -71,7 +70,6 @@ abstract class BaseViewModel extends DbViewModel implements EventListener {
AndroidNotificationManager notificationManager,
BlogManager blogManager) {
super(application, dbExecutor, lifecycleManager, db, androidExecutor);
this.db = db;
this.eventBus = eventBus;
this.identityManager = identityManager;
this.notificationManager = notificationManager;