(Object aCategory, ItemStack aStack, boolean aDefault)
| 99 | public Config setSaveOnEdit(boolean aSaveOnEdit) {mSaveOnEdit = aSaveOnEdit; return this;} |
| 100 | |
| 101 | public boolean get(Object aCategory, ItemStack aStack, boolean aDefault) { |
| 102 | return get(aCategory, ST.configName(aStack), aDefault); |
| 103 | } |
| 104 | |
| 105 | public boolean get(Object aCategory, String aName, boolean aDefault) { |
| 106 | if (UT.Code.stringInvalid(aName)) return aDefault; |
nothing calls this directly
no test coverage detected