(String d, Supplier s)
| 42 | } |
| 43 | |
| 44 | private void checkName(String d) { |
| 45 | if (uniforms.containsKey(d)) return; |
| 46 | try{ |
| 47 | Integer.parseInt(d); |
| 48 | throw new IllegalArgumentException(" can't call a uniform by a number? '"+d+"' are you sure you didn't mean ["+d+"].something = ...?"); |
| 49 | } |
nothing calls this directly
no test coverage detected