Skip to content

Commit

Permalink
Update DeltaPatcher.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
viklele committed Jun 26, 2014
1 parent 0bbb323 commit 3719e8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/DeltaPatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ namespace Promorphosis.Common.Helpers
/// <typeparam name="T"></typeparam>
public class DeltaPatcher<T> : DynamicObject
{
// Has the list of properties that can be patched.
// Provides us flexibility that certain properties can be skipped.
// Has the cached list of properties that can be patched.
private static Dictionary<string, PropertyInfo> m_patchableProperties = null;

// Save set values. We will use this to apply patch to the target base item.
// Save property values set on this instnace. We will use these to apply
// patch to target base item.
Dictionary<string, object> m_setValues = new Dictionary<string, object>();

/// <summary>
Expand Down

0 comments on commit 3719e8c

Please sign in to comment.