diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-08 22:40:57 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-08 22:40:57 -0700 |
commit | eb8e3476249517272780e3cbf6fde7d94340f257 (patch) | |
tree | 1106993890251ab7c402a03e733a4fca6eb69277 /src | |
parent | c604f25eaf5cd4fce2a73e00bfe8b27fe97b86d0 (diff) | |
download | DotNetOpenAuth-eb8e3476249517272780e3cbf6fde7d94340f257.zip DotNetOpenAuth-eb8e3476249517272780e3cbf6fde7d94340f257.tar.gz DotNetOpenAuth-eb8e3476249517272780e3cbf6fde7d94340f257.tar.bz2 |
Fix build break post-merge.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/Messaging/Reflection/MessagePart.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/Messaging/Reflection/MessagePart.cs b/src/DotNetOpenAuth/Messaging/Reflection/MessagePart.cs index c1e7aa2..462bb3c 100644 --- a/src/DotNetOpenAuth/Messaging/Reflection/MessagePart.cs +++ b/src/DotNetOpenAuth/Messaging/Reflection/MessagePart.cs @@ -210,7 +210,7 @@ namespace DotNetOpenAuth.Messaging.Reflection { internal string StaticConstantValue { get { Contract.Requires<InvalidOperationException>(this.IsConstantValueAvailableStatically); - return this.ToString(this.field.GetValue(null)); + return this.ToString(this.field.GetValue(null), false); } } |