Skip to content

Commit 6ae7a94

Browse files
committed
remove unnecessary change
1 parent 0c4f8bf commit 6ae7a94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/BiDi/Modules/Script/LocalValue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public abstract record PrimitiveProtocolLocalValue : LocalValue;
148148

149149
public record NumberLocalValue(double Value) : PrimitiveProtocolLocalValue
150150
{
151-
public static implicit operator NumberLocalValue(double n) => new NumberLocalValue(n);
151+
public static explicit operator NumberLocalValue(double n) => new NumberLocalValue(n);
152152
}
153153

154154
public record StringLocalValue(string Value) : PrimitiveProtocolLocalValue;

0 commit comments

Comments
 (0)