Skip to content

Commit f70cab3

Browse files
yahondaclaude
andcommitted
Remove empty result_set_to_ruby_data_type method
The method was defined as an empty stub in JDBCConnection (`def ... end` with no body, returning nil). It had zero call sites anywhere in lib/ or spec/, no dynamic dispatch construction targets the name, and the enclosing class is tagged `# :nodoc:` so it is not part of a documented public API. Drop the dead code. Net change: -3 LOC. No behavior change. Full suite is green (468 examples, 0 failures, 1 pre-existing pending). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent afab1dc commit f70cab3

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

lib/plsql/jdbc_connection.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -390,9 +390,6 @@ def get_ruby_value_from_result_set(rset, i, metadata)
390390
ora_value_to_ruby_value(ora_value)
391391
end
392392

393-
def result_set_to_ruby_data_type(column_type, column_type_name)
394-
end
395-
396393
def plsql_to_ruby_data_type(metadata)
397394
data_type, data_length = metadata[:data_type], metadata[:data_length]
398395
case data_type

0 commit comments

Comments
 (0)