summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/wizards/bsp/ErrorCollectorThread.java
blob: d39ac28fcbe3f0ae4a314c6df25a6ad29f3bd9a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.yocto.sdk.remotetools.wizards.bsp;

/**
 * BSPThread that ignores the output of the process and returns an error if the process exits with non zero code
 * @author ioana.grigoropol
 *
 */
public class ErrorCollectorThread extends BSPThread{

	public ErrorCollectorThread(String command) {
		super(command);
	}

	@Override
	protected String[] processLine(String line) {
		return null;
	}

}