Early exit on empty sets.

This commit is contained in:
2024-02-11 08:07:22 -05:00
parent 3666331de8
commit bd2547046a
+5
View File
@@ -273,6 +273,11 @@ public enum DbManager {
EnumSet<E> enumSet = EnumSet.noneOf(enumClass);
// Early exit for empty sets
if (mysqlSet.isEmpty())
return enumSet;
// Remove the leading and trailing brackets from the MySQL set
mysqlSet = mysqlSet.substring(1, mysqlSet.length() - 1);