MaximumNew.java

package ch.hslu.exercises.sw11.ex4.findfile;

import java.util.concurrent.Callable;

public class MaximumNew implements Callable<Integer> {
    @Override
    public Integer call() throws Exception {
        return 0;
    }
}