aboutsummaryrefslogtreecommitdiff
path: root/ServiceStack/StringMapTypeDeserializer.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-12 20:07:48 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-12 20:07:48 -0500
commit0a03d7ad9fe6554b78963445f012464023113614 (patch)
treedb7c353f9759d6d4259ee3fc017b569cba6f383c /ServiceStack/StringMapTypeDeserializer.cs
parenta6e7438987ebd0ef2c44940f76e6efd487803e02 (diff)
localization fixes
Diffstat (limited to 'ServiceStack/StringMapTypeDeserializer.cs')
-rw-r--r--ServiceStack/StringMapTypeDeserializer.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/ServiceStack/StringMapTypeDeserializer.cs b/ServiceStack/StringMapTypeDeserializer.cs
index 762e8aaff..8b76c39d0 100644
--- a/ServiceStack/StringMapTypeDeserializer.cs
+++ b/ServiceStack/StringMapTypeDeserializer.cs
@@ -48,11 +48,6 @@ namespace ServiceStack.Serialization
var propertyParseStringFn = GetParseFn(propertyType);
var propertySerializer = new PropertySerializerEntry(propertySetFn, propertyParseStringFn) { PropertyType = propertyType };
- var attr = propertyInfo.AllAttributes<DataMemberAttribute>().FirstOrDefault();
- if (attr != null && attr.Name != null)
- {
- propertySetterMap[attr.Name] = propertySerializer;
- }
propertySetterMap[propertyInfo.Name] = propertySerializer;
}
}