Return a File from inside the Processing 'lib' folder.
(String filename)
| 2173 | * Return a File from inside the Processing 'lib' folder. |
| 2174 | */ |
| 2175 | @SuppressWarnings("RedundantThrows") |
| 2176 | static public File getLibFile(String filename) throws IOException { |
| 2177 | return new File(Platform.getContentFile("lib"), filename); |
| 2178 | } |
| 2179 | |
| 2180 | |
| 2181 | /** |
no test coverage detected