Index: test/Common/DelftTools.Tests/Controls/Swf/Table/TestClasses/SomeData.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- test/Common/DelftTools.Tests/Controls/Swf/Table/TestClasses/SomeData.cs (.../SomeData.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ test/Common/DelftTools.Tests/Controls/Swf/Table/TestClasses/SomeData.cs (.../SomeData.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -2,29 +2,16 @@ { public class SomeData { - private double a; - private int b; + public SomeData() : this(0.0, 0) {} - public SomeData() : this(0.0, 0) - { - } - public SomeData(double a, int b) { - this.a = a; - this.b = b; + this.A = a; + this.B = b; } - public double A - { - get { return a; } - set { a = value; } - } + public double A { get; set; } - public int B - { - get { return b; } - set { b = value; } - } + public int B { get; set; } } } \ No newline at end of file