MCPcopy Create free account
hub / github.com/Bukkit/Bukkit / hasKey

Method hasKey

src/main/java/org/bukkit/inventory/ShapedRecipe.java:98–107  ·  view source on GitHub ↗
(char c)

Source from the content-addressed store, hash-verified

96 }
97
98 private boolean hasKey(char c) {
99 String key = Character.toString(c);
100
101 for (String row : rows) {
102 if (row.contains(key)) {
103 return true;
104 }
105 }
106 return false;
107 }
108
109 /**
110 * Get the ingredients map.

Callers 1

setIngredientMethod · 0.95

Calls 2

containsMethod · 0.65
toStringMethod · 0.45

Tested by

no test coverage detected