Skip to content

Commit 359dfe6

Browse files
authored
Merge pull request #1 from onXmaps/dschep/omit
Merge changes to master
2 parents e652b50 + d278431 commit 359dfe6

Some content is hidden

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

64 files changed

+91
-91
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/osm/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
@@ -6,8 +6,8 @@ import (
66

77
"github.com/paulmach/orb"
88
"github.com/paulmach/orb/geo"
9-
"github.com/paulmach/osm"
10-
"github.com/paulmach/osm/internal/mputil"
9+
"github.com/onXmaps/osm"
10+
"github.com/onXmaps/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
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
"github.com/paulmach/orb"
8-
"github.com/paulmach/osm"
8+
"github.com/onXmaps/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/osm/annotate/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)