Tweak to string cleanup.

This commit is contained in:
2024-02-11 08:09:31 -05:00
parent bd2547046a
commit 20bebafc89
-4
View File
@@ -278,10 +278,6 @@ public enum DbManager {
if (mysqlSet.isEmpty())
return enumSet;
// Remove the leading and trailing brackets from the MySQL set
mysqlSet = mysqlSet.substring(1, mysqlSet.length() - 1);
// Split set string and trim each element
String[] elements = mysqlSet.split(",");