aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/ProtocolBuffers.Serialization/DictionaryReader.cs
diff options
context:
space:
mode:
authorJon Skeet <jonskeet@google.com>2015-04-29 12:20:12 +0100
committerJon Skeet <jonskeet@google.com>2015-04-29 12:21:54 +0100
commitf015b860b74f1f7a5dc1a9fbf8b30daf7539d669 (patch)
treeec2829d6f679a864138abb2f96863ae285292ba5 /csharp/src/ProtocolBuffers.Serialization/DictionaryReader.cs
parent5e0189ab94a33568f9d270cce7706d97a17f0341 (diff)
downloadprotobuf-f015b860b74f1f7a5dc1a9fbf8b30daf7539d669.tar.gz
protobuf-f015b860b74f1f7a5dc1a9fbf8b30daf7539d669.tar.bz2
protobuf-f015b860b74f1f7a5dc1a9fbf8b30daf7539d669.zip
Remove CLS compliance from runtime code.
We need to remove it from the generator too; I'll raise a github issue for that.
Diffstat (limited to 'csharp/src/ProtocolBuffers.Serialization/DictionaryReader.cs')
-rw-r--r--csharp/src/ProtocolBuffers.Serialization/DictionaryReader.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/csharp/src/ProtocolBuffers.Serialization/DictionaryReader.cs b/csharp/src/ProtocolBuffers.Serialization/DictionaryReader.cs
index c460523c..971d0fee 100644
--- a/csharp/src/ProtocolBuffers.Serialization/DictionaryReader.cs
+++ b/csharp/src/ProtocolBuffers.Serialization/DictionaryReader.cs
@@ -118,7 +118,6 @@ namespace Google.ProtocolBuffers.Serialization
/// <summary>
/// Returns true if it was able to read a UInt32 from the input
/// </summary>
- [CLSCompliant(false)]
protected override bool Read(ref uint value)
{
return GetValue(ref value);
@@ -135,7 +134,6 @@ namespace Google.ProtocolBuffers.Serialization
/// <summary>
/// Returns true if it was able to read a UInt64 from the input
/// </summary>
- [CLSCompliant(false)]
protected override bool Read(ref ulong value)
{
return GetValue(ref value);