Skip to content

Commit 7f60880

Browse files
committed
Fix merge
1 parent 2ff92c8 commit 7f60880

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dotnet/src/webdriver/BiDi/Script/RemoteValue.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ public abstract record RemoteValue
9999
}
100100
}
101101

102-
public sealed record NumberRemoteValue([property: JsonConverter(typeof(SpecialNumberConverter))] double Value) : PrimitiveProtocolRemoteValue;
102+
public abstract record PrimitiveProtocolRemoteValue : RemoteValue;
103103

104-
public sealed record NumberRemoteValue(double Value) : PrimitiveProtocolRemoteValue;
104+
public sealed record NumberRemoteValue([property: JsonConverter(typeof(SpecialNumberConverter))] double Value) : PrimitiveProtocolRemoteValue;
105105

106106
public sealed record BooleanRemoteValue(bool Value) : PrimitiveProtocolRemoteValue;
107107

0 commit comments

Comments
 (0)