MCPcopy Index your code
hub / github.com/graphql-java/graphql-java / assertFalse

Method assertFalse

src/main/java/graphql/Assert.java:182–187  ·  view source on GitHub ↗
(boolean condition, Supplier<String> msg)

Source from the content-addressed store, hash-verified

180 }
181
182 public static void assertFalse(boolean condition, Supplier<String> msg) {
183 if (!condition) {
184 return;
185 }
186 throwAssert(msg.get());
187 }
188
189 public static void assertFalse(boolean condition) {
190 if (!condition) {

Callers 6

putPossibleMappingsMethod · 0.95
addSiblingToQueueMethod · 0.80
thisNodeMethod · 0.80
changeNodeMethod · 0.80
deleteNodeMethod · 0.80

Calls 2

throwAssertMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected