1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 15:24:51 +02:00

remove deprecated assertFalse, assertNull, assertNotNull

This commit is contained in:
soloturn
2020-07-29 09:22:42 +02:00
parent 652383640a
commit 8e80943926

View File

@@ -126,19 +126,4 @@ public class RippersTest {
}
}
@Deprecated
void assertFalse(String message, boolean condition) {
Assertions.assertFalse(condition, message);
}
@Deprecated
void assertNull(Object actual) {
Assertions.assertNull(actual);
}
@Deprecated
void assertNotNull(String message, Object actual) {
Assertions.assertNotNull(actual, message);
}
}