(File dir)
| 201 | } |
| 202 | |
| 203 | private void deleteDirectory(File dir) { |
| 204 | try { |
| 205 | FileUtils.deleteDirectory(dir); |
| 206 | } catch (IOException e) { |
| 207 | LOG.error("Could not delete directory " + dir, e); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | public static LogicalPlan getLogicalPlan(PigServer pig) throws Exception { |
| 212 | java.lang.reflect.Method buildLp = pig.getClass().getDeclaredMethod("buildLp"); |
no test coverage detected