From fd241cf4348692f66ddb1310c850e041d4e24035 Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 29 Sep 2022 10:37:51 -0700 Subject: [PATCH] Change Apache Shiro Assert import to Spring Framework Assert in SpringBootApacheGeodeClientCacheApplication. --- .../client/SpringBootApacheGeodeClientCacheApplication.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-geode-project/spring-geode-docs/src/main/java/org/springframework/geode/docs/example/app/client/SpringBootApacheGeodeClientCacheApplication.java b/spring-geode-project/spring-geode-docs/src/main/java/org/springframework/geode/docs/example/app/client/SpringBootApacheGeodeClientCacheApplication.java index eee9b19d..33b80057 100644 --- a/spring-geode-project/spring-geode-docs/src/main/java/org/springframework/geode/docs/example/app/client/SpringBootApacheGeodeClientCacheApplication.java +++ b/spring-geode-project/spring-geode-docs/src/main/java/org/springframework/geode/docs/example/app/client/SpringBootApacheGeodeClientCacheApplication.java @@ -19,8 +19,6 @@ import java.util.Arrays; import org.apache.geode.cache.client.ClientCache; -import org.apache.shiro.util.Assert; - import org.springframework.boot.ApplicationRunner; import org.springframework.boot.WebApplicationType; import org.springframework.boot.autoconfigure.SpringBootApplication; @@ -30,6 +28,7 @@ import org.springframework.context.annotation.Bean; import org.springframework.core.env.Environment; import org.springframework.data.gemfire.util.ArrayUtils; import org.springframework.geode.config.annotation.UseMemberName; +import org.springframework.util.Assert; import org.slf4j.Logger; import org.slf4j.LoggerFactory;