blob: 4f6a7ae9d0dffa522544a6ffc31ad2f56496218d [file] [log] [blame]
package com.siyeh.igtest.security;
import java.io.IOException;
public class LoadLibraryWithNonConstantStringInspection extends ClassLoader
{
public LoadLibraryWithNonConstantStringInspection()
{
}
public void foo() throws IOException
{
String i = bar();
System.loadLibrary("foo" + i);
System.loadLibrary("foo");
}
private String bar() {
return "bar";
}
}