Skip to content

Commit 2d9d8d8

Browse files
committed
Fix Javadoc for EventConditions
Issue: #1621
1 parent c659dd3 commit 2d9d8d8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

junit-platform-testkit/src/main/java/org/junit/platform/testkit/engine/EventConditions.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public static Condition<Event> uniqueIdSubstring(String uniqueIdSubstring) {
204204

205205
/**
206206
* Create a new {@link Condition} that matches if and only if the
207-
* {@linkplain TestDescriptor#getDisplayName()} display name} of an
207+
* {@linkplain TestDescriptor#getDisplayName() display name} of an
208208
* {@link Event}'s {@linkplain Event#getTestDescriptor() test descriptor}
209209
* is equal to the supplied {@link String}.
210210
*/
@@ -243,8 +243,6 @@ public static Condition<Event> skippedWithReason(Predicate<String> predicate) {
243243
* Create a new {@link Condition} that matches if and only if an
244244
* {@link Event}'s {@linkplain Event#getType() type} is
245245
* {@link EventType#STARTED}.
246-
*
247-
* @see #reason(Predicate)
248246
*/
249247
public static Condition<Event> started() {
250248
return type(STARTED);

0 commit comments

Comments
 (0)