(String what)
| 238 | |
| 239 | |
| 240 | static public int getIndex(String what) { |
| 241 | Integer entry = platformIndices.get(what); |
| 242 | return (entry == null) ? -1 : entry.intValue(); |
| 243 | } |
| 244 | |
| 245 | |
| 246 | // These were changed to no longer rely on PApplet and PConstants because |
no test coverage detected