We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 562a4cc commit 78c8683Copy full SHA for 78c8683
testcontainers-dapr/src/main/java/io/dapr/testcontainers/AppHttpPipeline.java
@@ -19,8 +19,13 @@
19
public class AppHttpPipeline implements ConfigurationSettings {
20
private List<ListEntry> handlers;
21
22
+ /**
23
+ * Creates an AppHttpPipeline.
24
+ *
25
+ * @param handlers List of handlers for the AppHttpPipeline
26
+ */
27
public AppHttpPipeline(List<ListEntry> handlers) {
- if (handlers != null ){
28
+ if (handlers != null) {
29
this.handlers = Collections.unmodifiableList(handlers);
30
}
31
0 commit comments