1
0
mirror of https://github.com/TwidereProject/Twidere-Android synced 2025-01-05 13:09:48 +01:00

fixed build error

This commit is contained in:
Mariotaku Lee 2016-10-16 18:09:18 +08:00
parent e18c6f21bf
commit 23ac622d77
2 changed files with 10 additions and 0 deletions

View File

@ -111,4 +111,9 @@ public class BatteryRecord implements LogModel {
public String getLogFileName() {
return "battery";
}
@Override
public boolean isEnabled() {
return false;
}
}

View File

@ -95,4 +95,9 @@ public class ScrollRecord implements LogModel {
public String getLogFileName() {
return "scroll";
}
@Override
public boolean isEnabled() {
return false;
}
}