mirror of https://github.com/rails/rails
kill unused variable warnings
This commit is contained in:
parent
8c71e8b18f
commit
5696d948ed
|
@ -83,7 +83,7 @@ HEADER
|
|||
|
||||
# first dump primary key column
|
||||
if @connection.respond_to?(:pk_and_sequence_for)
|
||||
pk, pk_seq = @connection.pk_and_sequence_for(table)
|
||||
pk, _ = @connection.pk_and_sequence_for(table)
|
||||
elsif @connection.respond_to?(:primary_key)
|
||||
pk = @connection.primary_key(table)
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue