Remove Person Require People File,
PersonContainer and bug fix for GetRightPadded
This commit is contained in:
@ -16,6 +16,9 @@ internal abstract class Location
|
||||
if (value < 0)
|
||||
value = 3;
|
||||
result = (int)(Math.Round(value, locationDigits) * locationFactor);
|
||||
string rightPadded = ILocation.GetRightPadded(locationDigits, result);
|
||||
if (result.ToString() != rightPadded)
|
||||
result = int.Parse(rightPadded);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user