You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contentgrid-testcontainers-k3s-cilium/src/main/java/com/contentgrid/testcontainers/k3s/customizer/K3sContainerCustomizer.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,16 +8,16 @@
8
8
publicinterfaceK3sContainerCustomizer {
9
9
10
10
/**
11
-
* Callback function that is called when the customizer is added to the container
12
-
* @param customizers The customizers container
11
+
* Callback function that is called when the customizer is added to the customizers collection
Copy file name to clipboardExpand all lines: contentgrid-testcontainers-k3s-cilium/src/main/java/com/contentgrid/testcontainers/k3s/customizer/K3sContainerCustomizers.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -4,30 +4,30 @@
4
4
importjava.util.function.UnaryOperator;
5
5
6
6
/**
7
-
* Container for {@link K3sContainerCustomizer}s
7
+
* A collection of {@link K3sContainerCustomizer}s
8
8
*/
9
9
publicinterfaceK3sContainerCustomizers {
10
10
11
11
/**
12
-
* Registers customizers to the container
12
+
* Registers customizers to this collection
13
13
* Every class of customizer can only be registered once. Registering the same class of customizer multiple times is an error
14
14
*
15
-
* @param customizers The customizers to add to the container
15
+
* @param customizers The customizers to add to the collection
0 commit comments