Skip to content

Commit b338048

Browse files
author
Bruce Eckel
committed
Shorten appveyor build time
1 parent bb8b445 commit b338048

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

functional/Closure7.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
public class Closure7 {
99
IntSupplier makeFun(int x) {
10-
Integer i = Integer.valueOf(0);
10+
Integer i = 0;
1111
i = i + 1;
1212
return () -> x + i;
1313
}

generics/Store.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public String toString() {
7171
return result.toString();
7272
}
7373
public static void main(String[] args) {
74-
System.out.println(new Store(14, 5, 10));
74+
System.out.println(new Store(5, 4, 3));
7575
}
7676
}
7777
/* Output: (First 8 Lines)

0 commit comments

Comments
 (0)