Skip to content

Commit ec573ae

Browse files
committed
Replace paulmach imports with onXmaps
1 parent 08dc908 commit ec573ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+98
-96
lines changed

annotate/change.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package annotate
33
import (
44
"context"
55

6-
"github.com/paulmach/osm"
7-
"github.com/paulmach/osm/annotate/internal/core"
6+
"github.com/onXmaps/osm"
7+
"github.com/onXmaps/osm/annotate/internal/core"
88
)
99

1010
// Change will annotate a change into a diff. It will use the

annotate/change_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"testing"
66

7-
"github.com/paulmach/osm"
7+
"github.com/onXmaps/osm"
88
)
99

1010
func TestChange_create(t *testing.T) {

annotate/datasource.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package annotate
33
import (
44
"context"
55

6-
"github.com/paulmach/osm"
7-
"github.com/paulmach/osm/annotate/internal/core"
8-
"github.com/paulmach/osm/annotate/shared"
6+
"github.com/onXmaps/osm"
7+
"github.com/onXmaps/osm/annotate/internal/core"
8+
"github.com/onXmaps/osm/annotate/shared"
99

1010
"github.com/paulmach/orb"
1111
"github.com/paulmach/orb/planar"

annotate/edgecases_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/paulmach/osm"
8+
"github.com/onXmaps/osm"
99
)
1010

1111
func TestEdgeCase_childCreatedAfterParent(t *testing.T) {

annotate/errors.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"time"
66

7-
"github.com/paulmach/osm"
8-
"github.com/paulmach/osm/annotate/internal/core"
7+
"github.com/onXmaps/osm"
8+
"github.com/onXmaps/osm/annotate/internal/core"
99
)
1010

1111
// NoHistoryError is returned if there is no entry in the history

annotate/errors_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55
"testing"
66

7-
"github.com/paulmach/osm/annotate/internal/core"
7+
"github.com/onXmaps/osmmmmm/annotate/internal/core"
88
)
99

1010
func TestMapErrors(t *testing.T) {

annotate/geo.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"math"
55
"time"
66

7+
"github.com/onXmaps/osm"
8+
"github.com/onXmaps/osm/internal/mputil"
79
"github.com/paulmach/orb"
810
"github.com/paulmach/orb/geo"
9-
"github.com/paulmach/osm"
10-
"github.com/paulmach/osm/internal/mputil"
1111
)
1212

1313
func wayPointOnSurface(w *osm.Way) orb.Point {

annotate/geo_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"encoding/xml"
55
"testing"
66

7+
"github.com/onXmaps/osm"
78
"github.com/paulmach/orb"
8-
"github.com/paulmach/osm"
99
)
1010

1111
func TestWayPointOnSurface(t *testing.T) {

annotate/internal/core/compute.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66
"time"
77

8-
"github.com/paulmach/osm"
9-
"github.com/paulmach/osm/annotate/shared"
8+
"github.com/onXmaps/osm"
9+
"github.com/onXmaps/osmnnotate/shared"
1010
)
1111

1212
// A Datasourcer is something that acts like a datasource allowing us to

annotate/internal/core/compute_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/paulmach/osm"
11-
"github.com/paulmach/osm/annotate/shared"
10+
"github.com/onXmaps/osm"
11+
"github.com/onXmaps/osm/annotate/shared"
1212
)
1313

1414
var (

0 commit comments

Comments
 (0)