# File lib/jdbc_adapter/jdbc_db2.rb, line 129 def strip_quotes(str) return str unless str return str unless /^(["']).*\1$/ =~ str str[1..-2] end