Skip to content
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.

Commit

Permalink
Wrap rather long line in 9243d83
Browse files Browse the repository at this point in the history
  • Loading branch information
dougbu committed Sep 29, 2015
1 parent c713aa9 commit 13af6f8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ public void GetDisplayMetadata(DisplayMetadataProviderContext context)
var groupName = GetDisplayGroup(field);
var value = ((Enum)field.GetValue(obj: null)).ToString("d");

groupedDisplayNamesAndValues.Add(new KeyValuePair<EnumGroupAndName, string>(new EnumGroupAndName(groupName, displayName), value));
groupedDisplayNamesAndValues.Add(new KeyValuePair<EnumGroupAndName, string>(
new EnumGroupAndName(groupName, displayName),
value));
namesAndValues.Add(name, value);
}

Expand Down

0 comments on commit 13af6f8

Please sign in to comment.