Remove '.' and '-' reference in the EndpointId javadoc
Endpoint ID's which contain '-' or '.' cause a deprecation warning. Therefore they shouldn't be doumented as valid characters. See gh-19101
This commit is contained in:
parent
f117dbe8a1
commit
58e599b6c1
|
@ -27,8 +27,8 @@ import org.apache.commons.logging.LogFactory;
|
||||||
import org.springframework.util.Assert;
|
import org.springframework.util.Assert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An identifier for an actuator endpoint. Endpoint IDs may contain only letters, numbers
|
* An identifier for an actuator endpoint. Endpoint IDs may contain only letters and numbers.
|
||||||
* {@code '.'} and {@code '-'}. They must begin with a lower-case letter. Case and syntax
|
* They must begin with a lower-case letter. Case and syntax
|
||||||
* characters are ignored when comparing endpoint IDs.
|
* characters are ignored when comparing endpoint IDs.
|
||||||
*
|
*
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
|
|
Loading…
Reference in New Issue