Index: src/Common/NetTopologySuite/Algorithm/HCoordinate.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2ac736f597049cb6e036d52b604d259c010d8b35
--- src/Common/NetTopologySuite/Algorithm/HCoordinate.cs (.../HCoordinate.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Algorithm/HCoordinate.cs (.../HCoordinate.cs) (revision 2ac736f597049cb6e036d52b604d259c010d8b35)
@@ -27,9 +27,9 @@
///
public HCoordinate(double x, double y, double w)
{
- this.X = x;
- this.Y = y;
- this.W = w;
+ X = x;
+ Y = y;
+ W = w;
}
///
Index: src/Common/NetTopologySuite/Geometries/Triangle.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2ac736f597049cb6e036d52b604d259c010d8b35
--- src/Common/NetTopologySuite/Geometries/Triangle.cs (.../Triangle.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Geometries/Triangle.cs (.../Triangle.cs) (revision 2ac736f597049cb6e036d52b604d259c010d8b35)
@@ -18,9 +18,9 @@
///
public Triangle(ICoordinate p0, ICoordinate p1, ICoordinate p2)
{
- this.P0 = p0;
- this.P1 = p1;
- this.P2 = p2;
+ P0 = p0;
+ P1 = p1;
+ P2 = p2;
}
///
Index: src/Common/NetTopologySuite/Operation/IsSimpleOp.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2ac736f597049cb6e036d52b604d259c010d8b35
--- src/Common/NetTopologySuite/Operation/IsSimpleOp.cs (.../IsSimpleOp.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Operation/IsSimpleOp.cs (.../IsSimpleOp.cs) (revision 2ac736f597049cb6e036d52b604d259c010d8b35)
@@ -182,7 +182,7 @@
///
public EndpointInfo(ICoordinate pt)
{
- this.Point = pt;
+ Point = pt;
isClosed = false;
Degree = 0;
}
Index: src/Common/NetTopologySuite/Utilities/RToolsUtil/SoftwarePackage.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2ac736f597049cb6e036d52b604d259c010d8b35
--- src/Common/NetTopologySuite/Utilities/RToolsUtil/SoftwarePackage.cs (.../SoftwarePackage.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/NetTopologySuite/Utilities/RToolsUtil/SoftwarePackage.cs (.../SoftwarePackage.cs) (revision 2ac736f597049cb6e036d52b604d259c010d8b35)
@@ -211,20 +211,20 @@
{
if (name != null)
{
- this.Name = name;
+ Name = name;
}
else
{
- this.Name = string.Empty;
+ Name = string.Empty;
}
if (productCode != null)
{
- this.ProductCode = productCode;
+ ProductCode = productCode;
}
else
{
- this.ProductCode = string.Empty;
+ ProductCode = string.Empty;
}
if (uninstallString != null)
@@ -238,11 +238,11 @@
if (displayVersion != null)
{
- this.DisplayVersion = displayVersion;
+ DisplayVersion = displayVersion;
}
else
{
- this.DisplayVersion = string.Empty;
+ DisplayVersion = string.Empty;
}
}
Index: src/Common/SharpMap/Rendering/Label.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2ac736f597049cb6e036d52b604d259c010d8b35
--- src/Common/SharpMap/Rendering/Label.cs (.../Label.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/SharpMap/Rendering/Label.cs (.../Label.cs) (revision 2ac736f597049cb6e036d52b604d259c010d8b35)
@@ -36,10 +36,10 @@
/// Height of the box
public LabelBox(float left, float top, float width, float height)
{
- this.Left = left;
- this.Top = top;
- this.Width = width;
- this.Height = height;
+ Left = left;
+ Top = top;
+ Width = width;
+ Height = height;
}
///
@@ -152,12 +152,12 @@
/// The style of the label
public Label(string text, PointF labelPoint, float rotation, int priority, LabelBox collisionbox, ILabelStyle style)
{
- this.Text = text;
- this.LabelPoint = labelPoint;
- this.Rotation = rotation;
- this.Priority = priority;
+ Text = text;
+ LabelPoint = labelPoint;
+ Rotation = rotation;
+ Priority = priority;
Box = collisionbox;
- this.Style = style;
+ Style = style;
}
///
Index: src/Common/SharpMap/Rendering/Thematics/CategorialThemeItem.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2ac736f597049cb6e036d52b604d259c010d8b35
--- src/Common/SharpMap/Rendering/Thematics/CategorialThemeItem.cs (.../CategorialThemeItem.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/SharpMap/Rendering/Thematics/CategorialThemeItem.cs (.../CategorialThemeItem.cs) (revision 2ac736f597049cb6e036d52b604d259c010d8b35)
@@ -22,7 +22,7 @@
this.style = (IStyle) style.Clone();
Symbol = symbol;
- this.Value = value;
+ Value = value;
}
public CategorialThemeItem(string category, IStyle style, Bitmap symbol)
Index: src/Common/SharpMap/Rendering/Thematics/GradientTheme.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2ac736f597049cb6e036d52b604d259c010d8b35
--- src/Common/SharpMap/Rendering/Thematics/GradientTheme.cs (.../GradientTheme.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/SharpMap/Rendering/Thematics/GradientTheme.cs (.../GradientTheme.cs) (revision 2ac736f597049cb6e036d52b604d259c010d8b35)
@@ -57,9 +57,9 @@
this.minValue = minValue;
this.maxValue = maxValue;
- this.FillColorBlend = fillColorBlend;
- this.LineColorBlend = lineColorBlend;
- this.TextColorBlend = textColorBlend;
+ FillColorBlend = fillColorBlend;
+ LineColorBlend = lineColorBlend;
+ TextColorBlend = textColorBlend;
AttributeName = attributeName;
Index: src/Common/SharpMap/Rendering/Thematics/QuantityTheme.cs
===================================================================
diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r2ac736f597049cb6e036d52b604d259c010d8b35
--- src/Common/SharpMap/Rendering/Thematics/QuantityTheme.cs (.../QuantityTheme.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
+++ src/Common/SharpMap/Rendering/Thematics/QuantityTheme.cs (.../QuantityTheme.cs) (revision 2ac736f597049cb6e036d52b604d259c010d8b35)
@@ -24,7 +24,7 @@
public QuantityTheme(string attributeName, IStyle defaultStyle)
{
AttributeName = attributeName;
- this.DefaultStyle = (defaultStyle != null) ? (IStyle) defaultStyle.Clone() : null;
+ DefaultStyle = (defaultStyle != null) ? (IStyle) defaultStyle.Clone() : null;
}
public override IEventedList ThemeItems