mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-19 22:29:53 +01:00
Reduce visibility.
This commit is contained in:
@@ -40,7 +40,7 @@ class BriarDataFetcher implements DataFetcher<InputStream> {
|
|||||||
private volatile boolean cancel = false;
|
private volatile boolean cancel = false;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
public BriarDataFetcher(MessagingManager messagingManager,
|
BriarDataFetcher(MessagingManager messagingManager,
|
||||||
@DatabaseExecutor Executor dbExecutor, AttachmentItem attachment) {
|
@DatabaseExecutor Executor dbExecutor, AttachmentItem attachment) {
|
||||||
this.messagingManager = messagingManager;
|
this.messagingManager = messagingManager;
|
||||||
this.dbExecutor = dbExecutor;
|
this.dbExecutor = dbExecutor;
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ public final class BriarModelLoader
|
|||||||
@Inject
|
@Inject
|
||||||
BriarDataFetcherFactory dataFetcherFactory;
|
BriarDataFetcherFactory dataFetcherFactory;
|
||||||
|
|
||||||
public BriarModelLoader(BriarApplication app) {
|
BriarModelLoader(BriarApplication app) {
|
||||||
app.getApplicationComponent().inject(this);
|
app.getApplicationComponent().inject(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ class BriarModelLoaderFactory
|
|||||||
|
|
||||||
private final BriarApplication app;
|
private final BriarApplication app;
|
||||||
|
|
||||||
public BriarModelLoaderFactory(BriarApplication app) {
|
BriarModelLoaderFactory(BriarApplication app) {
|
||||||
this.app = app;
|
this.app = app;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -21,13 +21,14 @@ import static android.graphics.Shader.TileMode.CLAMP;
|
|||||||
|
|
||||||
@Immutable
|
@Immutable
|
||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
public class CustomCornersTransformation extends BitmapTransformation {
|
class CustomCornersTransformation extends BitmapTransformation {
|
||||||
|
|
||||||
private static final String ID = CustomCornersTransformation.class.getName();
|
private static final String ID =
|
||||||
|
CustomCornersTransformation.class.getName();
|
||||||
|
|
||||||
private final Radii radii;
|
private final Radii radii;
|
||||||
|
|
||||||
public CustomCornersTransformation(Radii radii) {
|
CustomCornersTransformation(Radii radii) {
|
||||||
this.radii = radii;
|
this.radii = radii;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user