From e6151a647822d8d1fc4021a1d4a490126c78e0a8 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 11 Jun 2019 18:57:58 +0100 Subject: [PATCH] Polish --- .../SpringIterableConfigurationPropertySourceTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySourceTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySourceTests.java index 85f1ef9b26..46a0a145cf 100644 --- a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySourceTests.java +++ b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySourceTests.java @@ -184,7 +184,7 @@ class SpringIterableConfigurationPropertySourceTests { } @Test - public void originTrackedMapPropertySourceKeyAdditionInvalidatesCache() { + void originTrackedMapPropertySourceKeyAdditionInvalidatesCache() { // gh-13344 Map map = new LinkedHashMap<>(); map.put("key1", "value1"); @@ -198,7 +198,7 @@ class SpringIterableConfigurationPropertySourceTests { } @Test - public void readOnlyOriginTrackedMapPropertySourceKeyAdditionDoesNotInvalidateCache() { + void readOnlyOriginTrackedMapPropertySourceKeyAdditionDoesNotInvalidateCache() { // gh-16717 Map map = new LinkedHashMap<>(); map.put("key1", "value1");