blob: 1850e2f5c2d3119e20c14742acc7851931b57346 [file] [log] [blame]
package com.siyeh.igtest.portability;
import java.io.IOException;
public class SystemExitInspection
{
public SystemExitInspection()
{
}
public void foo() throws IOException
{
System.exit(0);
Runtime.getRuntime().exit(0);
Runtime.getRuntime().halt(0);
}
}