Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
bdovaz committed Jan 9, 2017
1 parent 809791a commit 9a11946
Show file tree
Hide file tree
Showing 4 changed files with 5,867 additions and 162 deletions.
7 changes: 2 additions & 5 deletions src/GetPropertyValue.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Linq;

namespace Insya.Localization
{
Expand All @@ -17,7 +14,7 @@ public class GetPropertyByValue
public object GetValue(object car, string propertyName)
{
return car.GetType().GetProperties()
.Single(pi => pi.Name == propertyName)
.Single(pi => pi.Name.Replace("@", "") == propertyName)
.GetValue(car, null);
}
}
Expand Down
23 changes: 0 additions & 23 deletions src/IInline.cs

This file was deleted.

Loading

0 comments on commit 9a11946

Please sign in to comment.