Skip to content

Commit 78c8683

Browse files
committed
following checkstyle
1 parent 562a4cc commit 78c8683

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

testcontainers-dapr/src/main/java/io/dapr/testcontainers/AppHttpPipeline.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,13 @@
1919
public class AppHttpPipeline implements ConfigurationSettings {
2020
private List<ListEntry> handlers;
2121

22+
/**
23+
* Creates an AppHttpPipeline.
24+
*
25+
* @param handlers List of handlers for the AppHttpPipeline
26+
*/
2227
public AppHttpPipeline(List<ListEntry> handlers) {
23-
if (handlers != null ){
28+
if (handlers != null) {
2429
this.handlers = Collections.unmodifiableList(handlers);
2530
}
2631
}

0 commit comments

Comments
 (0)