Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/ch13/fig13_02/GenericMethodTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

public class GenericMethodTest {
public static void main(String[] args) {
// create arrays of Integer, Double and Character
// create arrays of Integers and Doubles
Integer[] integerArray = {1, 2, 3, 4, 5, 6};
Double[] doubleArray = {1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7};

Expand Down