@@ -71,8 +71,8 @@ public static void fail() {
7171 }
7272
7373 /**
74- * Asserts that two objects are equal. If they are not an AssertionError is thrown with the
75- * given message.
74+ * Asserts that two objects are equal. If they are not an AssertionError is thrown with the given
75+ * message.
7676 *
7777 * @param message The message
7878 * @param expected The expected value
@@ -126,8 +126,8 @@ public static void assertEquals(String expected, String actual) {
126126 }
127127
128128 /**
129- * Asserts that two doubles are equal concerning a delta. If they are not an AssertionError
130- * is thrown with the given message. If the expected value is infinity then the delta value is
129+ * Asserts that two doubles are equal concerning a delta. If they are not an AssertionError is
130+ * thrown with the given message. If the expected value is infinity then the delta value is
131131 * ignored.
132132 *
133133 * @param message The message
@@ -162,8 +162,8 @@ public static void assertEquals(double expected, double actual, double delta) {
162162 }
163163
164164 /**
165- * Asserts that two floats are equal concerning a delta. If they are not an AssertionError
166- * is thrown with the given message. If the expected value is infinity then the delta value is
165+ * Asserts that two floats are equal concerning a delta. If they are not an AssertionError is
166+ * thrown with the given message. If the expected value is infinity then the delta value is
167167 * ignored.
168168 *
169169 * @param message The message
@@ -197,8 +197,8 @@ public static void assertEquals(float expected, float actual, float delta) {
197197 }
198198
199199 /**
200- * Asserts that two longs are equal. If they are not an AssertionError is thrown with the
201- * given message.
200+ * Asserts that two longs are equal. If they are not an AssertionError is thrown with the given
201+ * message.
202202 *
203203 * @param message The message
204204 * @param expected The expected value
@@ -219,8 +219,8 @@ public static void assertEquals(long expected, long actual) {
219219 }
220220
221221 /**
222- * Asserts that two booleans are equal. If they are not an AssertionError is thrown with the
223- * given message.
222+ * Asserts that two booleans are equal. If they are not an AssertionError is thrown with the given
223+ * message.
224224 *
225225 * @param message The message
226226 * @param expected The expected value
@@ -241,8 +241,8 @@ public static void assertEquals(boolean expected, boolean actual) {
241241 }
242242
243243 /**
244- * Asserts that two bytes are equal. If they are not an AssertionError is thrown with the
245- * given message.
244+ * Asserts that two bytes are equal. If they are not an AssertionError is thrown with the given
245+ * message.
246246 *
247247 * @param message The message
248248 * @param expected The expected value
@@ -263,8 +263,8 @@ public static void assertEquals(byte expected, byte actual) {
263263 }
264264
265265 /**
266- * Asserts that two chars are equal. If they are not an AssertionError is thrown with the
267- * given message.
266+ * Asserts that two chars are equal. If they are not an AssertionError is thrown with the given
267+ * message.
268268 *
269269 * @param message The message
270270 * @param expected The expected value
@@ -285,8 +285,8 @@ public static void assertEquals(char expected, char actual) {
285285 }
286286
287287 /**
288- * Asserts that two shorts are equal. If they are not an AssertionError is thrown with the
289- * given message.
288+ * Asserts that two shorts are equal. If they are not an AssertionError is thrown with the given
289+ * message.
290290 *
291291 * @param message The message
292292 * @param expected The expected value
@@ -307,8 +307,8 @@ public static void assertEquals(short expected, short actual) {
307307 }
308308
309309 /**
310- * Asserts that two ints are equal. If they are not an AssertionError is thrown with the
311- * given message.
310+ * Asserts that two ints are equal. If they are not an AssertionError is thrown with the given
311+ * message.
312312 *
313313 * @param message The message
314314 * @param expected The expected value
@@ -338,8 +338,7 @@ public static void assertNotNull(Object object) {
338338 }
339339
340340 /**
341- * Asserts that an object isn't null. If it is an AssertionError is thrown with the given
342- * message.
341+ * Asserts that an object isn't null. If it is an AssertionError is thrown with the given message.
343342 *
344343 * @param message The message
345344 * @param object The actual object
@@ -369,8 +368,8 @@ public static void assertNull(String message, Object object) {
369368 }
370369
371370 /**
372- * Asserts that two objects refer to the same object. If they are not an AssertionError is
373- * thrown with the given message.
371+ * Asserts that two objects refer to the same object. If they are not an AssertionError is thrown
372+ * with the given message.
374373 *
375374 * @param message The message
376375 * @param expected The expected value
@@ -384,8 +383,8 @@ public static void assertSame(String message, Object expected, Object actual) {
384383 }
385384
386385 /**
387- * Asserts that two objects refer to the same object. If they are not the same an
388- * AssertionError is thrown.
386+ * Asserts that two objects refer to the same object. If they are not the same an AssertionError
387+ * is thrown.
389388 *
390389 * @param expected The expected value
391390 * @param actual The actual value
@@ -395,8 +394,8 @@ public static void assertSame(Object expected, Object actual) {
395394 }
396395
397396 /**
398- * Asserts that two objects refer to the same object. If they are not an AssertionError is
399- * thrown with the given message.
397+ * Asserts that two objects refer to the same object. If they are not an AssertionError is thrown
398+ * with the given message.
400399 *
401400 * @param message The message
402401 * @param expected The expected value
@@ -409,8 +408,8 @@ public static void assertNotSame(String message, Object expected, Object actual)
409408 }
410409
411410 /**
412- * Asserts that two objects refer to the same object. If they are not the same an
413- * AssertionError is thrown.
411+ * Asserts that two objects refer to the same object. If they are not the same an AssertionError
412+ * is thrown.
414413 *
415414 * @param expected The expected value
416415 * @param actual The actual value
0 commit comments