Commit 6bc4df56 authored by Stephane Nicoll's avatar Stephane Nicoll

Fix meta-data for spring.devtools.remote

See gh-3086
parent bdfe5d19
......@@ -17,11 +17,13 @@
package org.springframework.boot.devtools.autoconfigure;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
/**
* Configuration properties for developer tools.
*
* @author Phillip Webb
* @author Stephane Nicoll
* @since 1.3.0
*/
@ConfigurationProperties(prefix = "spring.devtools")
......@@ -37,6 +39,7 @@ public class DevToolsProperties {
private Livereload livereload = new Livereload();
@NestedConfigurationProperty
private RemoteDevToolsProperties remote = new RemoteDevToolsProperties();
public Restart getRestart() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment