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