Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/compress/trunk@1340787 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
bodewig committed May 20, 2012
1 parent 0600296 commit 2ab2fcb
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,11 @@ boolean blockSort(final BZip2CompressorOutputStream.Data data, final int last) {
if (last + 1 < 10000) {
fallbackSort(data, last);
} else {
mainSort(data, last);

mainSort(data, last);

if (this.firstAttempt && (this.workDone > this.workLimit)) {
if (this.firstAttempt && (this.workDone > this.workLimit)) {
fallbackSort(data, last);
}
}
}

final int[] fmap = data.fmap;
Expand Down

0 comments on commit 2ab2fcb

Please sign in to comment.