We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b546453 commit 8f43f82Copy full SHA for 8f43f82
1 file changed
libdd-trace-utils/src/span/vec_map.rs
@@ -265,7 +265,6 @@ impl<K, V> Extend<(K, V)> for VecMap<K, V> {
265
impl<K: Serialize + Eq + Hash, V: Serialize> Serialize for VecMap<K, V> {
266
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
267
use serde::ser::SerializeMap;
268
- use std::collections::HashMap;
269
270
// We pre-compute the deduped map. If deduplication were done on the fly during
271
// serialization, we couldn't provide a length up front to the serializer, and the current
0 commit comments