Skip to content

Commit 0bce626

Browse files
Removed unused zipkin property
1 parent 0baf703 commit 0bce626

File tree

1 file changed

+0
-13
lines changed
  • spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/tracing/zipkin

1 file changed

+0
-13
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/tracing/zipkin/ZipkinProperties.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ public class ZipkinProperties {
4444
*/
4545
private Duration readTimeout = Duration.ofSeconds(10);
4646

47-
/**
48-
* Name of this application registered in Zipkin. Defaults to spring.application.name.
49-
*/
50-
private String serviceName;
51-
5247
public String getEndpoint() {
5348
return this.endpoint;
5449
}
@@ -73,12 +68,4 @@ public void setReadTimeout(Duration readTimeout) {
7368
this.readTimeout = readTimeout;
7469
}
7570

76-
public String getServiceName() {
77-
return this.serviceName;
78-
}
79-
80-
public void setServiceName(String serviceName) {
81-
this.serviceName = serviceName;
82-
}
83-
8471
}

0 commit comments

Comments
 (0)