diff --git a/CHANGELOG.md b/CHANGELOG.md index a22084c03da..e4999c2bb22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ - Remove pdata deprecated funcs from 2 versions (v0.48.0) ago. (#5219) - Remove non pdata deprecated funcs/structs (#5220) - `pmetric.Exemplar.ValueType()` now returns new type `ExemplarValueType` (#5233) +- Remove deprecated `Delete` pdata func from (v0.47.0). (#5307) ### 🚩 Deprecations 🚩 diff --git a/pdata/internal/common.go b/pdata/internal/common.go index fb93553ab17..19581368a7a 100644 --- a/pdata/internal/common.go +++ b/pdata/internal/common.go @@ -619,11 +619,6 @@ func (m Map) Get(key string) (Value, bool) { return Value{nil}, false } -// Deprecated: [v0.47.0] Use Remove instead. -func (m Map) Delete(key string) bool { - return m.Remove(key) -} - // Remove removes the entry associated with the key and returns true if the key // was present in the map, otherwise returns false. func (m Map) Remove(key string) bool {