Skip to content

Commit

Permalink
Fix adb logs: Rename old/newPreload() -> old/newStart()
Browse files Browse the repository at this point in the history
Summary: Changelog: [Internal]

Differential Revision: D48076894

fbshipit-source-id: 0b39e40736b5e1eff77a66f86d1a05644324149e
  • Loading branch information
RSNara authored and facebook-github-bot committed Aug 14, 2023
1 parent 632f6cd commit 27d572d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ public DefaultHardwareBackBtnHandler getDefaultBackButtonHandler() {
private @Nullable Task<Void> mStartTask = null;

private Task<Void> oldStart() {
final String method = "oldPreload()";
final String method = "oldStart()";
return Task.call(
() -> {
if (mStartTask == null) {
Expand Down Expand Up @@ -708,7 +708,7 @@ private Task<Void> oldStart() {
}

private Task<Void> newStart() {
final String method = "newPreload()";
final String method = "newStart()";
return Task.call(
() -> {
if (mStartTask == null) {
Expand Down

0 comments on commit 27d572d

Please sign in to comment.