From 22e5bc9669a61ed6ca398bd8ccda6079da64925d Mon Sep 17 00:00:00 2001 From: Joe Gallo Date: Tue, 1 Apr 2025 16:05:26 -0400 Subject: [PATCH] Close code section correctly to fix javadoc formatting --- hamcrest/src/main/java/org/hamcrest/Matchers.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hamcrest/src/main/java/org/hamcrest/Matchers.java b/hamcrest/src/main/java/org/hamcrest/Matchers.java index 60d8256a..c8fa7015 100644 --- a/hamcrest/src/main/java/org/hamcrest/Matchers.java +++ b/hamcrest/src/main/java/org/hamcrest/Matchers.java @@ -643,8 +643,8 @@ public static org.hamcrest.Matcher notNullValue() { } /** - * A shortcut to the frequently used not(nullValue(X.class)). Accepts a - * single dummy argument to facilitate type inference.. + * A shortcut to the frequently used not(nullValue(X.class)). Accepts a + * single dummy argument to facilitate type inference. * For example: *
assertThat(cheese, is(notNullValue(X.class)))
* instead of: