This commit is contained in:
Stephane Nicoll 2018-01-30 14:46:09 +01:00
parent 726a1d075e
commit 3291a7a76d
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ import org.springframework.util.MultiValueMap;
import org.springframework.util.StringUtils; import org.springframework.util.StringUtils;
/** /**
* Report on {@link PropertyMigration legacy properties}. * Report on {@link PropertyMigration properties migration}.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
*/ */
@ -61,7 +61,7 @@ class PropertiesMigrationReporter {
/** /**
* Analyse the {@link ConfigurableEnvironment environment} and attempt to rename * Analyse the {@link ConfigurableEnvironment environment} and attempt to rename
* legacy properties if a replacement exists. * legacy properties if a replacement exists.
* @return the analysis * @return a report of the migration
*/ */
public PropertiesMigrationReport getReport() { public PropertiesMigrationReport getReport() {
PropertiesMigrationReport report = new PropertiesMigrationReport(); PropertiesMigrationReport report = new PropertiesMigrationReport();

View File

@ -24,7 +24,7 @@ import org.springframework.boot.origin.Origin;
import org.springframework.boot.origin.TextResourceOrigin; import org.springframework.boot.origin.TextResourceOrigin;
/** /**
* Description of a legacy property. * Description of a property migration.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
*/ */