Skip to content

Commit 166f016

Browse files
committed
revert Format change
1 parent f2a1383 commit 166f016

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

src/ServiceStack.ProtoBuf/ProtoBufServiceClient.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ namespace ServiceStack.ProtoBuf
88
{
99
public class ProtoBufServiceClient : ServiceClientBase
1010
{
11-
public override string Format
12-
{
13-
get { return "x-protobuf"; }
14-
}
11+
public override string Format => "x-protobuf";
1512

1613
public ProtoBufServiceClient(string baseUri)
1714
{

src/ServiceStack.Wire/WireServiceClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace ServiceStack.Wire
66

77
public class WireServiceClient : ServiceClientBase
88
{
9-
public override string Format => MimeTypes.Wire;
9+
public override string Format => "x-wire";
1010

1111
public WireServiceClient(string baseUri)
1212
{

0 commit comments

Comments
 (0)