1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 22:22:11 +02:00

Missing @since tags

Change-Id: I6399f0151f1d1d9dd3b1a63ccb9757b2b3bf80fe
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2014-08-08 15:16:47 -04:00
parent 8e80f515fa
commit f3971c0510

View file

@ -73,6 +73,7 @@ public class Objdump {
}
/**
* Limit output to number of bytes
* @since 5.8
*/
public byte[] getOutput(int limitBytes) throws IOException {
Process objdump = ProcessFactory.getFactory().exec(args);
@ -104,6 +105,7 @@ public class Objdump {
return getOutput(0);
}
/** @since 5.8 */
public InputStream getInputStream() throws IOException {
Process objdump = ProcessFactory.getFactory().exec(args);
objdump.getOutputStream().close();