File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed
NHibernate.Test/NHSpecificTest Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ public virtual int Id
2929
3030 public virtual string Field
3131 {
32- get { return field ; }
33- set { field = value ; }
32+ get { return this . field ; }
33+ set { this . field = value ; }
3434 }
3535
3636 public virtual string FieldCamelcase
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ namespace NHibernate.Test.NHSpecificTest.NH1487
1010 public class Entity
1111 {
1212 int field ;
13- public int Id { get { return field ; } set { field = value ; } }
14- public int A { get { return field ; } set { field = value ; } }
15- public int B { get { return field ; } set { field = value ; } }
16- public int C { get { return field ; } set { field = value ; } }
13+ public int Id { get { return this . field ; } set { this . field = value ; } }
14+ public int A { get { return this . field ; } set { this . field = value ; } }
15+ public int B { get { return this . field ; } set { this . field = value ; } }
16+ public int C { get { return this . field ; } set { this . field = value ; } }
1717 }
1818
1919 /// <summary>
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ public object Get(object target)
204204 /// <value>The <see cref="System.Type"/> that the Field returns.</value>
205205 public System . Type ReturnType
206206 {
207- get { return field . FieldType ; }
207+ get { return this . field . FieldType ; }
208208 }
209209
210210 /// <summary>
@@ -322,7 +322,7 @@ public MethodInfo Method
322322
323323 public System . Type Type
324324 {
325- get { return field . FieldType ; }
325+ get { return @ field. FieldType ; }
326326 }
327327
328328 #endregion
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ internal class ProxyImplementor
2727
2828 public FieldBuilder InterceptorField
2929 {
30- get { return field ; }
30+ get { return this . field ; }
3131 }
3232
3333 public void ImplementProxy ( TypeBuilder typeBuilder )
You can’t perform that action at this time.
0 commit comments