Skip to content

Commit

Permalink
docs: fix javadoc tags
Browse files Browse the repository at this point in the history
  • Loading branch information
npepinpe committed May 11, 2022
1 parent d8f23c6 commit 6ccbf83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/io/zeebe/containers/util/RemoteDebugger.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
* }</pre>
*
* <pre>{@code
* @Testcontainers
* {@literal @}Testcontainers
* final class MyTest {
* @Container
* {@literal @}Container
* private final ZeebeContainer = RemoteDebugger.configure(new ZeebeContainer())
* .withEnv("MY_ENV_VAR", "true");
*
Expand Down Expand Up @@ -99,7 +99,7 @@ public static <T extends GenericContainer<T>> T configure(final T container, fin
* @return the same container configured for debugging
*/
public static <T extends GenericContainer<T>> T configure(
final T container, final int port, boolean suspend) {
final T container, final int port, final boolean suspend) {
final String javaOpts = container.getEnvMap().getOrDefault("JAVA_OPTS", "");
final char suspendFlag = suspend ? 'y' : 'n';

Expand Down

0 comments on commit 6ccbf83

Please sign in to comment.