Browse Source

Merge pull request #19101 from larsgrefer

* pr/19101:
  Polish "Remove '.' and '-' reference in the EndpointId javadoc"
  Remove '.' and '-' reference in the EndpointId javadoc

Closes gh-19101
pull/19171/head
Stephane Nicoll 6 years ago
parent
commit
faf3b5cb6b
  1. 6
      spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/EndpointId.java

6
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/EndpointId.java

@ -27,9 +27,9 @@ import org.apache.commons.logging.LogFactory; @@ -27,9 +27,9 @@ 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
* characters are ignored when comparing endpoint IDs.
* 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
* @since 2.0.6

Loading…
Cancel
Save