Skip to content

Commit

Permalink
Merge pull request #363 from seuros/main
Browse files Browse the repository at this point in the history
remove deprecated aliases
  • Loading branch information
keithdoggett committed Nov 9, 2023
2 parents 8f61123 + 061f836 commit 5ed969a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Expand Up @@ -75,7 +75,7 @@ jobs:
RuboCop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 'head'
Expand All @@ -88,7 +88,7 @@ jobs:
# outdated clang-format package.
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install clang-format
run: sudo apt-get install -yqq clang-format
- name: Show version
Expand Down
1 change: 0 additions & 1 deletion lib/rgeo/geos/ffi_feature_methods.rb
Expand Up @@ -212,7 +212,6 @@ def relate?(rhs, pattern)
fg = factory.convert_to_fg_geometry(rhs)
@fg_geom.relate_pattern(fg, pattern)
end
alias relate relate? # DEPRECATED

def distance(rhs)
fg = factory.convert_to_fg_geometry(rhs)
Expand Down
1 change: 0 additions & 1 deletion lib/rgeo/geos/zm_feature_methods.rb
Expand Up @@ -128,7 +128,6 @@ def overlaps?(rhs)
def relate?(rhs, pattern)
@zgeometry.relate?(RGeo::Feature.cast(rhs, self).z_geometry, pattern)
end
alias relate relate? # DEPRECATED

def distance(rhs)
@zgeometry.distance(RGeo::Feature.cast(rhs, self).z_geometry)
Expand Down

0 comments on commit 5ed969a

Please sign in to comment.