Commit 081f94dc authored by Michael Droettboom's avatar Michael Droettboom
Browse files

Fix visibility markers

parent 96688059
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@

package mozilla.components.service.glean.histogram

import androidx.annotation.VisibleForTesting
import mozilla.components.support.ktx.android.org.json.tryGetLong
import org.json.JSONObject
import java.lang.Math.pow
@@ -28,7 +27,6 @@ import kotlin.math.log
 * @param values a map containing the minimum bucket value mapped to the accumulated count
 * @param sum the accumulated sum of all the samples in the histogram
 */
@VisibleForTesting(otherwise = VisibleForTesting.PRIVATE)
data class FunctionalHistogram(
    // map from bucket limits to accumulated values
    val values: MutableMap<Long, Long> = mutableMapOf(),
+0 −2
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@

package mozilla.components.service.glean.histogram

import androidx.annotation.VisibleForTesting
import mozilla.components.service.glean.private.HistogramType
import mozilla.components.support.ktx.android.org.json.tryGetInt
import mozilla.components.support.ktx.android.org.json.tryGetLong
@@ -24,7 +23,6 @@ import org.json.JSONObject
 * @param values a map containing the bucket index mapped to the accumulated count
 * @param sum the accumulated sum of all the samples in the custom distribution
 */
@VisibleForTesting(otherwise = VisibleForTesting.PRIVATE)
data class PrecomputedHistogram(
    val rangeMin: Long,
    val rangeMax: Long,