start of new file
[IRC.git] / Robust / src / Benchmarks / MapReduce / Java / ToolRunner.java
1 //package mapreduce;
2
3 public class ToolRunner {
4     
5     public static int run(Tool tool, String[] args) {
6         return tool.run(args);
7     }
8     
9 }