From 0d153dd91ad4d48d9bb037f3767d69ab5b3b4477 Mon Sep 17 00:00:00 2001 From: Yanming Zhou Date: Thu, 15 May 2025 09:22:19 +0800 Subject: [PATCH] Remove unused imports in sample See gh-45554 Signed-off-by: Yanming Zhou --- .../constructorbinding/primaryconstructor/MyProperties.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/kotlin/org/springframework/boot/docs/features/externalconfig/typesafeconfigurationproperties/constructorbinding/primaryconstructor/MyProperties.kt b/spring-boot-project/spring-boot-docs/src/main/kotlin/org/springframework/boot/docs/features/externalconfig/typesafeconfigurationproperties/constructorbinding/primaryconstructor/MyProperties.kt index 938f621a92d..7428e2f0c3f 100644 --- a/spring-boot-project/spring-boot-docs/src/main/kotlin/org/springframework/boot/docs/features/externalconfig/typesafeconfigurationproperties/constructorbinding/primaryconstructor/MyProperties.kt +++ b/spring-boot-project/spring-boot-docs/src/main/kotlin/org/springframework/boot/docs/features/externalconfig/typesafeconfigurationproperties/constructorbinding/primaryconstructor/MyProperties.kt @@ -17,8 +17,6 @@ package org.springframework.boot.docs.features.externalconfig.typesafeconfigurationproperties.constructorbinding.primaryconstructor import org.springframework.boot.context.properties.ConfigurationProperties -import org.springframework.boot.context.properties.bind.DefaultValue -import java.net.InetAddress @ConfigurationProperties("my") class MyProperties() {