blob: ba42e915258643b436639efbf1735dcbea496732 [file] [log] [blame]
package com.siyeh.igtest.portability;
import java.io.IOException;
public class RuntimeExecInspection
{
public RuntimeExecInspection()
{
}
public void foo() throws IOException
{
final Runtime runtime = Runtime.getRuntime();
runtime.exec("foo");
}
}