remove logging from needsUploading()

This commit is contained in:
Daniel Gultsch 2021-03-22 19:05:46 +01:00
parent 914ea9c398
commit aad34783ad
1 changed files with 1 additions and 3 deletions

View File

@ -900,9 +900,7 @@ public class Message extends AbstractEntity implements AvatarService.Avatarable
}
public boolean needsUploading() {
final boolean needsUploading = isFileOrImage() && getFileParams().url == null;
Log.d(Config.LOGTAG, "needs uploading " + needsUploading + " url=" + getFileParams().url);
return needsUploading;
return isFileOrImage() && getFileParams().url == null;
}
public static class FileParams {