Skip to content

Commit 65119f2

Browse files
author
Petr Sramek
committed
Merge branch 'develop/1.0' of https://github.com/dropoutcoder/polyline-algorithm-csharp into develop/1.0
2 parents 3f7e425 + f28a42a commit 65119f2

33 files changed

+117
-87
lines changed

src/PolylineAlgorithm/Coordinate.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//
2-
// Copyright (c) Pete Sramek. All rights reserved.
3-
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
1+
//
2+
// Copyright © Pete Sramek. All rights reserved.
3+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

66
namespace PolylineAlgorithm;

src/PolylineAlgorithm/IPolylineDecoder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//
2-
// Copyright (c) Pete Sramek. All rights reserved.
3-
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
1+
//
2+
// Copyright © Pete Sramek. All rights reserved.
3+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

66
namespace PolylineAlgorithm;

src/PolylineAlgorithm/IPolylineEncoder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//
2-
// Copyright (c) Pete Sramek. All rights reserved.
3-
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
1+
//
2+
// Copyright © Pete Sramek. All rights reserved.
3+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

66
namespace PolylineAlgorithm;

src/PolylineAlgorithm/Internal/Defaults.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//
2-
// Copyright (c) Pete Sramek. All rights reserved.
3-
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
1+
//
2+
// Copyright © Pete Sramek. All rights reserved.
3+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

66
namespace PolylineAlgorithm.Internal;

src/PolylineAlgorithm/Internal/PolylineReader.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
namespace PolylineAlgorithm.Internal;
1+
//
2+
// Copyright © Pete Sramek. All rights reserved.
3+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
4+
//
5+
6+
namespace PolylineAlgorithm.Internal;
27

38
using System.Runtime.CompilerServices;
49
using System.Runtime.InteropServices;

src/PolylineAlgorithm/Internal/PolylineWriter.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
namespace PolylineAlgorithm.Internal;
1+
//
2+
// Copyright © Pete Sramek. All rights reserved.
3+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
4+
//
5+
6+
namespace PolylineAlgorithm.Internal;
27

38
using System;
49
using System.Runtime.CompilerServices;

src/PolylineAlgorithm/InvalidCoordinateException.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//
2-
// Copyright (c) Pete Sramek. All rights reserved.
3-
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
1+
//
2+
// Copyright © Pete Sramek. All rights reserved.
3+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

66
namespace PolylineAlgorithm;

src/PolylineAlgorithm/InvalidPolylineException.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//
2-
// Copyright (c) Pete Sramek. All rights reserved.
3-
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
1+
//
2+
// Copyright © Pete Sramek. All rights reserved.
3+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

66
namespace PolylineAlgorithm;

src/PolylineAlgorithm/InvalidReaderStateException.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//
2-
// Copyright (c) Pete Sramek. All rights reserved.
3-
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
1+
//
2+
// Copyright © Pete Sramek. All rights reserved.
3+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

66
namespace PolylineAlgorithm;

src/PolylineAlgorithm/InvalidWriterStateException.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//
2-
// Copyright (c) Pete Sramek. All rights reserved.
3-
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
1+
//
2+
// Copyright © Pete Sramek. All rights reserved.
3+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

66
namespace PolylineAlgorithm;

0 commit comments

Comments
 (0)