fixing style

Signed-off-by: salaboy <Salaboy@gmail.com>
This commit is contained in:
salaboy 2025-07-22 09:26:21 +01:00
parent 1f52fd2228
commit bbfd258553
1 changed files with 2 additions and 2 deletions

View File

@ -141,12 +141,12 @@ public class DaprContainer extends GenericContainer<DaprContainer> {
return this;
}
public DaprContainer withAppHealthCheckProbeTimeout(Integer appHealthCheckProbeTimeout){
public DaprContainer withAppHealthCheckProbeTimeout(Integer appHealthCheckProbeTimeout) {
this.appHealthCheckProbeTimeout = appHealthCheckProbeTimeout;
return this;
}
public DaprContainer withAppHealthCheckThreshold(Integer appHealthCheckThreshold ){
public DaprContainer withAppHealthCheckThreshold(Integer appHealthCheckThreshold) {
this.appHealthCheckThreshold = appHealthCheckThreshold;
return this;
}