зеркало из https://github.com/mozilla/glean.git
Default to `false` for `getUploadEnabled`
This commit is contained in:
Родитель
887c3f0894
Коммит
5d9ed97fa3
|
@ -344,7 +344,7 @@ open class GleanInternalAPI internal constructor () {
|
||||||
if (isInitialized()) {
|
if (isInitialized()) {
|
||||||
return LibGleanFFI.INSTANCE.glean_is_upload_enabled().toBoolean()
|
return LibGleanFFI.INSTANCE.glean_is_upload_enabled().toBoolean()
|
||||||
} else {
|
} else {
|
||||||
return true
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -306,7 +306,7 @@ namespace Mozilla.Glean
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -269,7 +269,7 @@ public class Glean {
|
||||||
if isInitialized() {
|
if isInitialized() {
|
||||||
return glean_is_upload_enabled() != 0
|
return glean_is_upload_enabled() != 0
|
||||||
} else {
|
} else {
|
||||||
return true
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -331,7 +331,7 @@ class Glean:
|
||||||
if cls.is_initialized():
|
if cls.is_initialized():
|
||||||
return bool(_ffi.lib.glean_is_upload_enabled())
|
return bool(_ffi.lib.glean_is_upload_enabled())
|
||||||
else:
|
else:
|
||||||
return True
|
return False
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def set_experiment_active(
|
def set_experiment_active(
|
||||||
|
|
Загрузка…
Ссылка в новой задаче