Skip to content

Commit

Permalink
Fix all the messages
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge authored Oct 4, 2023
1 parent e2905d7 commit 9c8d651
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/core/shared/src/main/scala/TraceValue.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ object TraceValue {

@deprecated("use `viaTraceableValue(value)`", "0.3.0")
def stringToTraceValue(value: String): TraceValue = StringValue(value)
@deprecated("use .viaTraceableValue(TraceableValue)", "0.3.0")
@deprecated("use `viaTraceableValue(value)`", "0.3.0")
def boolToTraceValue(value: Boolean): TraceValue = BooleanValue(value)
@deprecated("use .viaTraceableValue(TraceableValue)", "0.3.0")
@deprecated("use `viaTraceableValue(value)`", "0.3.0")
def intToTraceValue(value: Int): TraceValue = NumberValue(value)
@deprecated("use .viaTraceableValue(TraceableValue)", "0.3.0")
@deprecated("use `viaTraceableValue(value)`", "0.3.0")
def longToTraceValue(value: Long): TraceValue = NumberValue(value)
@deprecated("use .viaTraceableValue(TraceableValue)", "0.3.0")
@deprecated("use `viaTraceableValue(value)`", "0.3.0")
def floatToTraceValue(value: Float): TraceValue = NumberValue(value)
@deprecated("use .viaTraceableValue(TraceableValue)", "0.3.0")
@deprecated("use `viaTraceableValue(value)`", "0.3.0")
def doubleToTraceValue(value: Double): TraceValue = NumberValue(value)
}

Expand Down

0 comments on commit 9c8d651

Please sign in to comment.