Make private final field static

It's used as a constant.

Change-Id: Ic267e8cb5b62228de15e134cd80725df592a0171
This commit is contained in:
Robin Stocker 2010-10-29 15:27:10 +02:00
parent 7f939ba86e
commit 8cbed3462e
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@
/** Custom output stream to support {@link PackWriter}. */
public final class PackOutputStream extends OutputStream {
private final int BYTES_TO_WRITE_BEFORE_CANCEL_CHECK = 128 * 1024;
private static final int BYTES_TO_WRITE_BEFORE_CANCEL_CHECK = 128 * 1024;
private final ProgressMonitor writeMonitor;