mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 07:01:05 +00:00
Small improvements
This commit is contained in:
parent
02435d79c0
commit
d3cd10df38
1 changed files with 2 additions and 2 deletions
|
@ -83,7 +83,7 @@ import javax.mail.Part;
|
|||
import javax.mail.internet.InternetAddress;
|
||||
|
||||
public class Log {
|
||||
static final String TAG = "fairemail";
|
||||
private static final String TAG = "fairemail";
|
||||
|
||||
public static int d(String msg) {
|
||||
if (BuildConfig.DEBUG)
|
||||
|
@ -739,7 +739,7 @@ public class Log {
|
|||
}
|
||||
|
||||
|
||||
static long getFreeMem() {
|
||||
private static long getFreeMem() {
|
||||
Runtime rt = Runtime.getRuntime();
|
||||
long used = (rt.totalMemory() - rt.freeMemory());
|
||||
long max = rt.maxMemory();
|
||||
|
|
Loading…
Reference in a new issue