| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1 +1 @@ | |||
| 1 | - 20251109202645 | ||
| 1 | + 20251218091505 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1 +1 @@ | |||
| 1 | - 20251109202645 | ||
| 1 | + 20251218091505 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -52,26 +52,26 @@ public BufferedOutputStream(OutputStream out) { | |||
| 52 | 52 | buf = new byte[8192]; | |
| 53 | 53 | } | |
| 54 | 54 | ||
| 55 | - /** | ||
| 56 | - * Constructs a new BufferedOutputStream on the OutputStream | ||
| 57 | - * <code>out</code>. The buffer size is set to <code>size</code> and | ||
| 58 | - * all writes are now filtered through this stream. | ||
| 59 | - * | ||
| 60 | - * @param out | ||
| 61 | - * the OutputStream to buffer writes on. | ||
| 62 | - * @param size | ||
| 63 | - * the size of the buffer in bytes. | ||
| 64 | - * @throws IllegalArgumentException | ||
| 65 | - * the size is <= 0 | ||
| 66 | - */ | ||
| 67 | - public BufferedOutputStream(OutputStream out, int size) { | ||
| 68 | - jzSetFOS(out); | ||
| 69 | - if (size <= 0) { | ||
| 70 | - // K0058=size must be > 0 | ||
| 71 | - throw new IllegalArgumentException(("K0058")); //$NON-NLS-1$ | ||
| 72 | - } | ||
| 73 | - buf = new byte[size]; | ||
| 74 | - } | ||
| 55 | + // /** | ||
| 56 | + // * Constructs a new BufferedOutputStream on the OutputStream | ||
| 57 | + // * <code>out</code>. The buffer size is set to <code>size</code> and | ||
| 58 | + // * all writes are now filtered through this stream. | ||
| 59 | + // * | ||
| 60 | + // * @param out | ||
| 61 | + // * the OutputStream to buffer writes on. | ||
| 62 | + // * @param size | ||
| 63 | + // * the size of the buffer in bytes. | ||
| 64 | + // * @throws IllegalArgumentException | ||
| 65 | + // * the size is <= 0 | ||
| 66 | + // */ | ||
| 67 | + // public BufferedOutputStream(OutputStream out, int size) { | ||
| 68 | + // jzSetFOS(out); | ||
| 69 | + // if (size <= 0) { | ||
| 70 | + // // K0058=size must be > 0 | ||
| 71 | + // throw new IllegalArgumentException(("K0058")); //$NON-NLS-1$ | ||
| 72 | + // } | ||
| 73 | + // buf = new byte[size]; | ||
| 74 | + // } | ||
| 75 | 75 | ||
| 76 | 76 | /** | |
| 77 | 77 | * Flush this BufferedOutputStream to ensure all pending data is written out | |
| Back | FazBrowse Home | New Git URL |
0 commit comments