Skip to content

Commit dd8e239

Browse files
committed
updated SwintJS-site.zip
1 parent f920b75 commit dd8e239

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20251109202645
1+
20251218091505
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20251109202645
1+
20251218091505
-1.12 KB
Binary file not shown.

sources/net.sf.j2s.java.core/src_4.2/java/io/BufferedOutputStream.java

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)