Ver código fonte

Improve AssertUtil for collection checking

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
master
Eric Zhao 5 anos atrás
pai
commit
cf5b955f12
1 arquivos alterados com 10 adições e 0 exclusões
  1. +10
    -0
      sentinel-core/src/main/java/com/alibaba/csp/sentinel/util/AssertUtil.java

+ 10
- 0
sentinel-core/src/main/java/com/alibaba/csp/sentinel/util/AssertUtil.java Ver arquivo

@@ -15,8 +15,12 @@
*/ */
package com.alibaba.csp.sentinel.util; package com.alibaba.csp.sentinel.util;


import java.util.Collection;

/** /**
* Util class for checking arguments. * Util class for checking arguments.
*
* @author Eric Zhao
*/ */
public class AssertUtil { public class AssertUtil {


@@ -28,6 +32,12 @@ public class AssertUtil {
} }
} }


public static void assertNotEmpty(Collection<?> collection, String message) {
if (collection == null || collection.isEmpty()) {
throw new IllegalArgumentException(message);
}
}

public static void assertNotBlank(String string, String message) { public static void assertNotBlank(String string, String message) {
if (StringUtil.isBlank(string)) { if (StringUtil.isBlank(string)) {
throw new IllegalArgumentException(message); throw new IllegalArgumentException(message);


Carregando…
Cancelar
Salvar