gentoo/dev-java/jmock/files/jmock-1.2.0-AbstractMo.patch
Volkmar W. Pogatzki fc38768415
dev-java/jmock: EAPI 7
Bug: https://bugs.gentoo.org/775635

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/19895
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
2021-03-14 09:23:31 +01:00

28 lines
1.2 KiB
Diff

--- a/src/org/jmock/expectation/AssertMo.java.orig 2015-08-28 10:15:13.490000000 +0000
+++ b/src/org/jmock/expectation/AssertMo.java 2015-08-28 10:15:22.206000000 +0000
@@ -73,15 +73,15 @@
assertTrue("Should not have verified", threwException);
}
- static protected void failNotEquals( String message,
- Object expected,
- Object actual ) {
- String formatted = "";
- if (message != null) {
- formatted = message + " ";
- }
- fail(formatted + "\nExpected:<" + expected + ">\nReceived:<" + actual + ">");
- }
+// static protected void failNotEquals( String message,
+// Object expected,
+// Object actual ) {
+// String formatted = "";
+// if (message != null) {
+// formatted = message + " ";
+// }
+// fail(formatted + "\nExpected:<" + expected + ">\nReceived:<" + actual + ">");
+// }
public static void notImplemented( String mockName ) {
throw new NotImplementedException("Not Implemented in " + mockName);