Skip to content

Commit 6ba51b0

Browse files
author
Bruce Eckel
committed
Change chapter title
1 parent 61d9e21 commit 6ba51b0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+58
-58
lines changed

exceptions/TryAnything.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
// {CompileTimeError} (Won't compile)
5+
// {CompileTimeError} (Will not compile)
66

77
class Anything {}
88

functional/Closure3.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
// {CompileTimeError} (Won't compile)
5+
// {CompileTimeError} (Will not compile)
66
import java.util.function.*;
77

88
public class Closure3 {

functional/Closure5.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
// {CompileTimeError} (Won't compile)
5+
// {CompileTimeError} (Will not compile)
66
import java.util.function.*;
77

88
public class Closure5 {

functional/Closure7.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
// {CompileTimeError} (Won't compile)
5+
// {CompileTimeError} (Will not compile)
66
import java.util.function.*;
77

88
public class Closure7 {

functional/Closure9.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
// {CompileTimeError} (Won't compile)
5+
// {CompileTimeError} (Will not compile)
66
import java.util.*;
77
import java.util.function.*;
88

generics/Erased.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
// {CompileTimeError} (Won't compile)
5+
// {CompileTimeError} (Will not compile)
66

77
public class Erased<T> {
88
private final int SIZE = 100;

generics/HijackedInterface.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
// {CompileTimeError} (Won't compile)
5+
// {CompileTimeError} (Will not compile)
66

77
class Cat
88
extends ComparablePet implements Comparable<Cat>{

generics/MultipleInterfaceVariants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
// {CompileTimeError} (Won't compile)
5+
// {CompileTimeError} (Will not compile)
66

77
interface Payable<T> {}
88

generics/NonCovariantGenerics.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
// {CompileTimeError} (Won't compile)
5+
// {CompileTimeError} (Will not compile)
66
import java.util.*;
77

88
public class NonCovariantGenerics {

housekeeping/OverloadingVarargs2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
// {CompileTimeError} (Won't compile)
5+
// {CompileTimeError} (Will not compile)
66

77
public class OverloadingVarargs2 {
88
static void f(float i, Character... args) {

0 commit comments

Comments
 (0)