Skip to content

Commit eef53c6

Browse files
committed
Use Java 17
1 parent 5b82b64 commit eef53c6

File tree

3 files changed

+124
-156
lines changed

3 files changed

+124
-156
lines changed

java/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@
4343
<type>pom</type>
4444
<scope>import</scope>
4545
</dependency>
46+
<dependency>
47+
<groupId>org.assertj</groupId>
48+
<artifactId>assertj-bom</artifactId>
49+
<version>3.27.6</version>
50+
<type>pom</type>
51+
<scope>import</scope>
52+
</dependency>
4653
</dependencies>
4754
</dependencyManagement>
4855

@@ -85,6 +92,11 @@
8592
<artifactId>junit-jupiter</artifactId>
8693
<scope>test</scope>
8794
</dependency>
95+
<dependency>
96+
<groupId>org.assertj</groupId>
97+
<artifactId>assertj-core</artifactId>
98+
<scope>test</scope>
99+
</dependency>
88100
</dependencies>
89101

90102
<build>

java/src/main/java/io/cucumber/cucumberexpressions/Transformer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public interface Transformer<T> {
1414
* from the sole capture group or matches the whole expression. Nested
1515
* capture groups are ignored.
1616
* <p>
17-
* If the capture group is optional <code>arg</code> may be null.
17+
* If the capture group is optional {@code arg} may be {@code null}.
1818
*
1919
* @param arg the value of the single capture group
2020
* @return the transformed object

0 commit comments

Comments
 (0)