File tree Expand file tree Collapse file tree 4 files changed +22
-22
lines changed
net.sf.j2s.core/dist/swingjs Expand file tree Collapse file tree 4 files changed +22
-22
lines changed Original file line number Diff line number Diff line change 1- 20251109202645
1+ 20251218091505
Original file line number Diff line number Diff line change 1- 20251109202645
1+ 20251218091505
Original file line number Diff line number Diff line change @@ -52,26 +52,26 @@ public BufferedOutputStream(OutputStream out) {
5252 buf = new byte [8192 ];
5353 }
5454
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+ // }
7575
7676 /**
7777 * Flush this BufferedOutputStream to ensure all pending data is written out
You can’t perform that action at this time.
0 commit comments