Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/pull/4632'
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Mar 28, 2024
2 parents df4349a + 16cc2e7 commit 50df5ee
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions app/controllers/changesets_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ class ChangesetsController < ApplicationController

around_action :web_timeout

# Helper methods for checking consistency
include ConsistencyValidations

##
# list non-empty changesets in reverse chronological order
def index
Expand Down
1 change: 0 additions & 1 deletion app/models/old_node.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

class OldNode < ApplicationRecord
include GeoRecord
include ConsistencyValidations

self.table_name = "nodes"

Expand Down
2 changes: 0 additions & 2 deletions app/models/old_relation.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
#

class OldRelation < ApplicationRecord
include ConsistencyValidations

self.table_name = "relations"

# NOTE: this needs to be included after the table name changes, or
Expand Down
2 changes: 0 additions & 2 deletions app/models/old_way.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
#

class OldWay < ApplicationRecord
include ConsistencyValidations

self.table_name = "ways"

# NOTE: this needs to be included after the table name changes, or
Expand Down
2 changes: 0 additions & 2 deletions lib/diff_reader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
# Uses the streaming LibXML "Reader" interface to cut down on memory
# usage, so hopefully we can process fairly large diffs.
class DiffReader
include ConsistencyValidations

# maps each element type to the model class which handles it
MODELS = {
"node" => Node,
Expand Down

0 comments on commit 50df5ee

Please sign in to comment.