Skip to content

Commit

Permalink
Kotlin: Remove obsolete type alias
Browse files Browse the repository at this point in the history
The new `glean_parser` we pull in doesn't use this anymore
  • Loading branch information
badboy committed Aug 21, 2024
1 parent 429235c commit 4a06291
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
[Full changelog](https://github.com/mozilla/glean/compare/v60.5.0...main)

* General
* Updated to UniFFI 0.28.0 ([#2920](https://github.com/mozilla/glean/pull/2920))
* Update to `glean_parser` v15.0.0 ([release notes](https://github.com/mozilla/glean_parser/releases/tag/v15.0.0))
* BREAKING CHANGE: Updated to UniFFI 0.28.0 ([#2920](https://github.com/mozilla/glean/pull/2920))
* BREAKING CHANGE: Update to `glean_parser` v15.0.0 ([release notes](https://github.com/mozilla/glean_parser/releases/tag/v15.0.0))
* Kotlin
* BREAKING CHANGE: Remove now obsolete type alias ([#2935](https://github.com/mozilla/glean/issues/2935))

# v60.5.0 (2024-08-06)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,3 @@ interface HistogramBase {
*/
fun accumulateSamples(samples: List<Long>)
}

// glean_parser template currently expects `HistogramMetricBase` as the name
// and since this alias was defined in `service-glean` in android-components,
// we need to keep the alias until the parser template is updated also.
// See Bug 1906941 for more information.
typealias HistogramMetricBase = mozilla.telemetry.glean.private.HistogramBase

0 comments on commit 4a06291

Please sign in to comment.