Shorten appveyor build time

This commit is contained in:
Bruce Eckel 2017-05-02 10:31:57 -06:00
parent bb8b445649
commit b3380488aa
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import java.util.function.*;
public class Closure7 {
IntSupplier makeFun(int x) {
Integer i = Integer.valueOf(0);
Integer i = 0;
i = i + 1;
return () -> x + i;
}

View File

@ -71,7 +71,7 @@ public class Store extends ArrayList<Aisle> {
return result.toString();
}
public static void main(String[] args) {
System.out.println(new Store(14, 5, 10));
System.out.println(new Store(5, 4, 3));
}
}
/* Output: (First 8 Lines)