8282296: (se) Pipe.open() creates a Pipe implementation that uses Unix domain sockets (win)

Reviewed-by: dfuchs, lancea, bpb
This commit is contained in:
Michael McMahon 2022-02-23 20:02:11 +00:00
parent 7dc7184c10
commit e540e0a81b

View file

@ -179,7 +179,7 @@ class PipeImpl
* Creates a (TCP) Pipe implementation that supports buffering.
*/
PipeImpl(SelectorProvider sp) throws IOException {
this(sp, true, false);
this(sp, false, true);
}
/**