1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 08:46:02 +02:00

Bug 394797 - LargePipedInputStream can use java 6's new constructor for

PipedInputStream

Change-Id: I416c3c877fcae238b8faaff16937ef7dac378f35
Reviewed-on: https://git.eclipse.org/r/8787
Reviewed-by: Marc Khouzam <marc.khouzam@ericsson.com>
IP-Clean: Marc Khouzam <marc.khouzam@ericsson.com>
Tested-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2012-11-21 10:22:38 -05:00
parent cd482994b5
commit 17f5758af3

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2006, 2009 Wind River Systems and others. * Copyright (c) 2006, 2012 Wind River Systems and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -7,6 +7,8 @@
* *
* Contributors: * Contributors:
* Wind River Systems - initial API and implementation * Wind River Systems - initial API and implementation
* Marc Khouzam (Ericsson) - Specify the larger size in the new constructor
* of PipedInputStream provided by Java 6
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.dsf.mi.service.command; package org.eclipse.cdt.dsf.mi.service.command;
@ -17,13 +19,12 @@ import java.io.PipedOutputStream;
class LargePipedInputStream extends PipedInputStream { class LargePipedInputStream extends PipedInputStream {
private final int LARGE_BUF_SIZE = 1024 * 1024; // 1 megs private static final int LARGE_BUF_SIZE = 1024 * 1024; // 1M
public LargePipedInputStream(PipedOutputStream pipedoutputstream) public LargePipedInputStream(PipedOutputStream pipedoutputstream)
throws IOException throws IOException
{ {
super(pipedoutputstream); super(pipedoutputstream, LARGE_BUF_SIZE);
buffer = new byte[LARGE_BUF_SIZE];
} }
} }