Dan Ballard pushed to branch tor-browser-140.1.0esr-15.0-1 at The Tor Project / Applications / Tor Browser

Commits:

1 changed file:

Changes:

  • mobile/android/android-components/components/support/remotesettings/src/main/java/mozilla/components/support/remotesettings/RemoteSettingsService.kt
    ... ... @@ -27,9 +27,7 @@ class RemoteSettingsService(
    27 27
         isLargeScreenSize: Boolean = false,
    
    28 28
     ) {
    
    29 29
         val remoteSettingsService: RemoteSettingsService by lazy {
    
    30
    -        val appContext = generateAppContext(context, channel, isLargeScreenSize)
    
    31
    -        val databasePath = context.getDir("remote-settings", Context.MODE_PRIVATE).absolutePath
    
    32
    -        RemoteSettingsService(databasePath, RemoteSettingsConfig2(server = server, appContext = appContext))
    
    30
    +        RemoteSettingsService() /* no-op */
    
    33 31
         }
    
    34 32
     }
    
    35 33