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
ISSUE027: Making field as private
  • Loading branch information
niks36 committed Oct 11, 2019
commit 5c7ec8627b8f5e03489bc02eef38d3cb4779734b
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class ForkJoinSumCalculator extends RecursiveTask<Long> {

public static final long THRESHOLD = 10_000;
private static final long THRESHOLD = 10_000;

private final long[] numbers;
private final int start;
Expand Down