kill unused variable warnings

This commit is contained in:
Aaron Patterson 2011-01-11 15:29:35 -08:00
parent 8c71e8b18f
commit 5696d948ed
1 changed files with 1 additions and 1 deletions

View File

@ -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