TMP
[demos/kafka/chat] / src / main / java / de / juplo / kafka / chat / backend / storage / nostorage / NoStorageStorageConfiguration.java
index a893e9d..0d50b89 100644 (file)
@@ -4,7 +4,6 @@ import de.juplo.kafka.chat.backend.implementation.StorageStrategy;
 import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
 import org.springframework.context.annotation.Bean;
 import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.Lazy;
 
 
 @ConditionalOnProperty(
@@ -20,11 +19,4 @@ public class NoStorageStorageConfiguration
   {
     return new NoStorageStorageStrategy();
   }
-
-  @Bean
-  @Lazy(false)
-  public String foo()
-  {
-    return "FOO";
-  }
 }