Shorten appveyor build time
This commit is contained in:
parent
bb8b445649
commit
b3380488aa
@ -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;
|
||||
}
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user