aboutsummaryrefslogtreecommitdiffhomepage
path: root/csharp/src/Google.Protobuf/JsonFormatter.cs
diff options
context:
space:
mode:
authorGravatar Jon Skeet <jonskeet@google.com>2015-07-30 13:03:45 +0100
committerGravatar Jon Skeet <jonskeet@google.com>2015-07-30 13:36:45 +0100
commit68380f0f6681c72a5d4ab5e69abc9670e9d99838 (patch)
treef924bcd3a601cb55540924cc28fa7bbc600792cd /csharp/src/Google.Protobuf/JsonFormatter.cs
parent7909b2edeb19affdf3f96a0b13a8098f28860c3c (diff)
Rename ThrowHelper to Preconditions and make it public - we'll want to use it from the generated code soon.
Additionally, change it to return the value passed, and make it generic with a class constraint. A separate method doesn't have the class constraint, for more unusual scenarios.
Diffstat (limited to 'csharp/src/Google.Protobuf/JsonFormatter.cs')
-rw-r--r--csharp/src/Google.Protobuf/JsonFormatter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Google.Protobuf/JsonFormatter.cs b/csharp/src/Google.Protobuf/JsonFormatter.cs
index f624b090..438af4df 100644
--- a/csharp/src/Google.Protobuf/JsonFormatter.cs
+++ b/csharp/src/Google.Protobuf/JsonFormatter.cs
@@ -120,7 +120,7 @@ namespace Google.Protobuf
public string Format(IMessage message)
{
- ThrowHelper.ThrowIfNull(message, "message");
+ Preconditions.CheckNotNull(message, "message");
StringBuilder builder = new StringBuilder();
// TODO(jonskeet): Handle well-known types here.
// Our reflection support needs improving so that we can get at the descriptor