(long aID, long aMeta, boolean aWildcard)
| 46 | return this == o; |
| 47 | } |
| 48 | public boolean containsKey(long aID, long aMeta, boolean aWildcard) { |
| 49 | if (mHasWildcards) { |
| 50 | if (aWildcard) { |
| 51 | if (containsKey(new ItemStackContainer(aID, 1, W))) return T; |
| 52 | if (aMeta == W) return F; |
| 53 | } |
| 54 | } else { |
| 55 | if (aMeta == W) return F; |
| 56 | } |
| 57 | return containsKey(new ItemStackContainer(aID, 1, aMeta)); |
| 58 | } |
| 59 | public boolean containsKey(Item aItem, long aMeta, boolean aWildcard) { |
| 60 | if (mHasWildcards) { |
| 61 | if (aWildcard) { |
no test coverage detected