blob: 3715c3ab1b4c2735f7acc74a96b864ceb4f46555 [file] [log] [blame]
package com.siyeh.igtest.security;
public class SystemPropertiesInspection
{
public void foo()
{
System.getProperties();
System.getProperty("foo");
Integer.getInteger("foo");
Boolean.getBoolean("foo");
}
}