Skip to content

Commit d1ab3a3

Browse files
committed
Access modifiers changed from internal to public
1 parent 94079f1 commit d1ab3a3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/ProjNet/CoordinateSystems/Transformations/ConcatenatedTransform.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace ProjNet.CoordinateSystems.Transformations
2525
///
2626
/// </summary>
2727
[Serializable]
28-
internal class ConcatenatedTransform : MathTransform, ICoordinateTransformationCore
28+
public class ConcatenatedTransform : MathTransform, ICoordinateTransformationCore
2929
{
3030
/// <summary>
3131
///

src/ProjNet/CoordinateSystems/Transformations/CoordinateTransformation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class CoordinateTransformation : ICoordinateTransformation
3939
/// <param name="authorityCode">Authority code</param>
4040
/// <param name="areaOfUse">Area of use</param>
4141
/// <param name="remarks">Remarks</param>
42-
internal CoordinateTransformation(CoordinateSystem sourceCS, CoordinateSystem targetCS, TransformType transformType, MathTransform mathTransform,
42+
public CoordinateTransformation(CoordinateSystem sourceCS, CoordinateSystem targetCS, TransformType transformType, MathTransform mathTransform,
4343
string name, string authority, long authorityCode, string areaOfUse, string remarks)
4444
{
4545
TargetCS = targetCS;

0 commit comments

Comments
 (0)