blob: 99825a649fb344a5626a03f5b3abc11261131146 [file] [log] [blame]
package com.siyeh.igtest.portability;
import java.io.IOException;
public class SystemGetEnvInspection
{
public SystemGetEnvInspection()
{
}
public void foo() throws IOException
{
System.getenv("foo");
}
}