MDEV-9465 The constructor StringBuffer(const char *str, size_t length, const CHARSET_INFO *cs) looks suspicious

Removing the suspicious constructor, it's not used in the code anyway.
This commit is contained in:
Alexander Barkov 2019-04-23 09:11:42 +04:00
parent 279a907fd0
commit 9dcfd6be94

View File

@ -649,11 +649,6 @@ public:
{
length(0);
}
StringBuffer(const char *str, size_t length_arg, CHARSET_INFO *cs)
: String(buff, buff_sz, cs)
{
set(str, length_arg, cs);
}
};