File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
devkit-utils/src/main/java/com/onixbyte/devkit/utils
simple-serial-spring-boot-starter/src/main/java/com/onixbyte/serial Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 2828 */
2929public final class ListUtil {
3030
31+ /**
32+ * Private constructor to prevent instantiation of this utility class.
33+ * <p>
34+ * This class provides static methods for list manipulation and is not intended to be
35+ * instantiated. The private constructor ensures that no instances can be created, enforcing
36+ * the utility nature of the class.
37+ */
38+ private ListUtil () {
39+ }
40+
3141 /**
3242 * Splits a given List into a List of sub lists, where each sublist contains at most
3343 * {@code maxSize} elements. The original list is not modified, and new sub lists are created
Original file line number Diff line number Diff line change 3232@ AutoConfiguration
3333public class RedisConfig {
3434
35+ /**
36+ * Redis auto configuration.
37+ */
38+ public RedisConfig () {
39+ }
40+
3541 /**
3642 * RedisTemplate for serial service.
3743 *
You can’t perform that action at this time.
0 commit comments