We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79df593 commit 189fc11Copy full SHA for 189fc11
src/library/org/hamcrest/core/IsEqual.java
@@ -67,21 +67,5 @@ private static boolean isArray(Object o) {
67
public static <T> Matcher<T> equalTo(T operand) {
68
return new IsEqual<T>(operand);
69
}
70
-
71
- /**
72
- * Is the value true?
73
- */
74
- @Factory
75
- public static Matcher<Boolean> isTrue() {
76
- return equalTo(true);
77
- }
78
79
80
- * Is the value false?
81
82
83
- public static Matcher<Boolean> isFalse() {
84
- return equalTo(false);
85
86
+
87
0 commit comments