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;
|
||||
|
||||
/**
|
||||
* An identifier for an actuator endpoint. Endpoint IDs may contain only letters, numbers
|
||||
* {@code '.'} and {@code '-'}. They must begin with a lower-case letter. Case and syntax
|
||||
* An identifier for an actuator endpoint. Endpoint IDs may contain only letters and numbers.
|
||||
* They must begin with a lower-case letter. Case and syntax
|
||||
* characters are ignored when comparing endpoint IDs.
|
||||
*
|
||||
* @author Phillip Webb
|
||||
|
|
Loading…
Reference in New Issue