Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ private OrderRollupApp() {

public static void main(String[] args) {
final Integer[] boxCounts = {
new Integer(4),
new Integer(7),
new Integer(3),
new Integer(5)
Integer.valueOf(4),
Integer.valueOf(7),
Integer.valueOf(3),
Integer.valueOf(5)
};
final Long[] orderValues = {
new Long(1299L),
new Long(2450L),
new Long(875L),
new Long(1625L)
Long.valueOf(1299L),
Long.valueOf(2450L),
Long.valueOf(875L),
Long.valueOf(1625L)
};

int totalBoxes = 0;
Expand Down
Loading