blob: cc9f8600b6592263933b87b8d8716e65bba58600 [file] [log] [blame]
public class ExtractMethods {
public void processLine(String line) {
newMethod(line);
}
private void newMethod(String line) {
//final Charset charset = myProcessHandler.getCharset();
final OutputStream outputStream = null;//myProcessHandler.getProcessInput();
try {
//byte[] bytes = (line + "\n").getBytes(charset.name());
byte[] bytes = (line + "\n").getBytes();
outputStream.write(bytes);
outputStream.flush();
}
catch (IOException e) {
// ignore
}
}
}