Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
mherrmann committed Sep 23, 2024
1 parent 6817583 commit d72037b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ private void onClickViews() {
}
}

private bool setDefaultBrowser() {
private boolean setDefaultBrowser() {
if (!isDefaultBrowser()) {
BraveSetDefaultBrowserUtils.setDefaultBrowser(this);
if (!BraveSetDefaultBrowserUtils.supportsDefaultRoleManager()) {
Expand All @@ -240,7 +240,7 @@ private bool setDefaultBrowser() {
return true;
}

private bool isDefaultBrowser() {
private boolean isDefaultBrowser() {
return BraveSetDefaultBrowserUtils.isBraveSetAsDefaultBrowser(this);
}

Expand Down Expand Up @@ -447,7 +447,7 @@ public void onCheckedChanged(
}
}

private bool shouldForceDefaultBrowserPrompt() {
private boolean shouldForceDefaultBrowserPrompt() {
return ChromeFeatureList.isEnabled(BraveFeatureList.ANDROID_FORCE_DEFAULT_BROWSER_PROMPT);
}

Expand Down

0 comments on commit d72037b

Please sign in to comment.