mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-26 19:05:23 +01:00
Oops
This commit is contained in:
@@ -52,24 +52,4 @@ public class FixedLinearLayout extends LinearLayout {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean post(Runnable action) {
|
||||
return super.post(new RunnableEx("post") {
|
||||
@Override
|
||||
protected void delegate() {
|
||||
action.run();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean postDelayed(Runnable action, long delayMillis) {
|
||||
return super.postDelayed(new RunnableEx("postDelayed") {
|
||||
@Override
|
||||
protected void delegate() {
|
||||
action.run();
|
||||
}
|
||||
}, delayMillis);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user