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