remove logging from needsUploading()
This commit is contained in:
parent
914ea9c398
commit
aad34783ad
|
@ -900,9 +900,7 @@ public class Message extends AbstractEntity implements AvatarService.Avatarable
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean needsUploading() {
|
public boolean needsUploading() {
|
||||||
final boolean needsUploading = isFileOrImage() && getFileParams().url == null;
|
return isFileOrImage() && getFileParams().url == null;
|
||||||
Log.d(Config.LOGTAG, "needs uploading " + needsUploading + " url=" + getFileParams().url);
|
|
||||||
return needsUploading;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class FileParams {
|
public static class FileParams {
|
||||||
|
|
Loading…
Reference in New Issue