This repository was archived by the owner on Jul 22, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
app/src/common/shared/org/mozilla/vrbrowser Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -583,7 +583,7 @@ public void setSpeechDataCollectionReviewed(boolean isEnabled) {
583
583
editor .commit ();
584
584
}
585
585
586
- public boolean isDebugLogginEnabled () {
586
+ public boolean isDebugLoggingEnabled () {
587
587
return mPrefs .getBoolean (mContext .getString (R .string .settings_key_debug_logging ), DEBUG_LOGGING_DEFAULT );
588
588
}
589
589
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ object EngineProvider {
46
46
builder.debugLogging(true )
47
47
builder.aboutConfigEnabled(true )
48
48
} else {
49
- builder.debugLogging(SettingsStore .getInstance(context).isDebugLogginEnabled )
49
+ builder.debugLogging(SettingsStore .getInstance(context).isDebugLoggingEnabled )
50
50
}
51
51
52
52
runtime = GeckoRuntime .create(context, builder.build())
Original file line number Diff line number Diff line change 17
17
import org .mozilla .vrbrowser .browser .engine .SessionStore ;
18
18
import org .mozilla .vrbrowser .databinding .OptionsDeveloperBinding ;
19
19
import org .mozilla .vrbrowser .ui .views .settings .SwitchSetting ;
20
- import org .mozilla .vrbrowser .ui .widgets .UISurfaceTextureRenderer ;
21
20
import org .mozilla .vrbrowser .ui .widgets .WidgetManagerDelegate ;
22
21
23
22
import static org .mozilla .vrbrowser .utils .ServoUtils .isServoAvailable ;
@@ -66,7 +65,7 @@ private void initialize(Context aContext) {
66
65
if (BuildConfig .DEBUG ) {
67
66
mBinding .debugLoggingSwitch .setVisibility (View .GONE );
68
67
} else {
69
- setDebugLogging (SettingsStore .getInstance (getContext ()).isDebugLogginEnabled (), false );
68
+ setDebugLogging (SettingsStore .getInstance (getContext ()).isDebugLoggingEnabled (), false );
70
69
}
71
70
72
71
if (!isServoAvailable ()) {
You can’t perform that action at this time.
0 commit comments