mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
Code review nitpicks.
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
package org.briarproject.android.controller;
|
||||
|
||||
public interface DBController {
|
||||
public interface DbController {
|
||||
|
||||
void runOnDbThread(Runnable task);
|
||||
|
||||
}
|
||||
@@ -8,10 +8,10 @@ import java.util.logging.Logger;
|
||||
|
||||
import javax.inject.Inject;
|
||||
|
||||
public class DBControllerImpl implements DBController {
|
||||
public class DbControllerImpl implements DbController {
|
||||
|
||||
private static final Logger LOG =
|
||||
Logger.getLogger(BriarControllerImpl.class.getName());
|
||||
Logger.getLogger(DbControllerImpl.class.getName());
|
||||
|
||||
// Fields that are accessed from background threads must be volatile
|
||||
@Inject
|
||||
@@ -21,7 +21,7 @@ public class DBControllerImpl implements DBController {
|
||||
protected volatile LifecycleManager lifecycleManager;
|
||||
|
||||
@Inject
|
||||
public DBControllerImpl() {
|
||||
public DbControllerImpl() {
|
||||
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ import javax.inject.Inject;
|
||||
import static java.util.logging.Level.INFO;
|
||||
import static java.util.logging.Level.WARNING;
|
||||
|
||||
public class NavDrawerControllerImpl extends DBControllerImpl
|
||||
public class NavDrawerControllerImpl extends DbControllerImpl
|
||||
implements NavDrawerController, EventListener {
|
||||
|
||||
private static final Logger LOG =
|
||||
|
||||
Reference in New Issue
Block a user