mirror of
https://github.com/github/codeql.git
synced 2025-12-22 19:56:32 +01:00
Java: add generated stubs back, but in a different directory from existing apache-http-5 stubs
This commit is contained in:
17
java/ql/test/stubs/apache-http-5-Generated/javax/net/SocketFactory.java
generated
Normal file
17
java/ql/test/stubs/apache-http-5-Generated/javax/net/SocketFactory.java
generated
Normal file
@@ -0,0 +1,17 @@
|
||||
// Generated automatically from javax.net.SocketFactory for testing purposes
|
||||
|
||||
package javax.net;
|
||||
|
||||
import java.net.InetAddress;
|
||||
import java.net.Socket;
|
||||
|
||||
abstract public class SocketFactory
|
||||
{
|
||||
protected SocketFactory(){}
|
||||
public Socket createSocket(){ return null; }
|
||||
public abstract Socket createSocket(InetAddress p0, int p1);
|
||||
public abstract Socket createSocket(InetAddress p0, int p1, InetAddress p2, int p3);
|
||||
public abstract Socket createSocket(String p0, int p1);
|
||||
public abstract Socket createSocket(String p0, int p1, InetAddress p2, int p3);
|
||||
public static SocketFactory getDefault(){ return null; }
|
||||
}
|
||||
Reference in New Issue
Block a user