Skip to content

Commit

Permalink
RUMM-3151 make write<T:>(value:) public
Browse files Browse the repository at this point in the history
  • Loading branch information
ganeshnj committed Jun 26, 2023
1 parent 3bed75c commit 8ccf78d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Datadog/DatadogCore/Storage/Writing/Writer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public protocol Writer {
}

extension Writer {
func write<T: Encodable>(value: T) {
public func write<T: Encodable>(value: T) {
let metadata: Data? = nil
write(value: value, metadata: metadata)
}
Expand Down

0 comments on commit 8ccf78d

Please sign in to comment.