View Javadoc
1   package ch.hslu.exercises.sw11.ex4.findfile;
2   
3   import java.util.concurrent.Callable;
4   
5   public class MaximumNew implements Callable<Integer> {
6       @Override
7       public Integer call() throws Exception {
8           return 0;
9       }
10  }