summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-06-08 22:40:57 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-06-08 22:40:57 -0700
commiteb8e3476249517272780e3cbf6fde7d94340f257 (patch)
tree1106993890251ab7c402a03e733a4fca6eb69277 /src
parentc604f25eaf5cd4fce2a73e00bfe8b27fe97b86d0 (diff)
downloadDotNetOpenAuth-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.cs2
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);
}
}