mirror of
https://github.com/github/codeql.git
synced 2026-04-26 09:15:12 +02:00
delete wrong stubs
This commit is contained in:
24
java/ql/test/stubs/springframework-5.3.8/org/springframework/util/FileCopyUtils.java
generated
Normal file
24
java/ql/test/stubs/springframework-5.3.8/org/springframework/util/FileCopyUtils.java
generated
Normal file
@@ -0,0 +1,24 @@
|
||||
// Generated automatically from org.springframework.util.FileCopyUtils for testing purposes
|
||||
|
||||
package org.springframework.util;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.io.Reader;
|
||||
import java.io.Writer;
|
||||
|
||||
abstract public class FileCopyUtils
|
||||
{
|
||||
public FileCopyUtils(){}
|
||||
public static String copyToString(Reader p0){ return null; }
|
||||
public static byte[] copyToByteArray(File p0){ return null; }
|
||||
public static byte[] copyToByteArray(InputStream p0){ return null; }
|
||||
public static int BUFFER_SIZE = 0;
|
||||
public static int copy(File p0, File p1){ return 0; }
|
||||
public static int copy(InputStream p0, OutputStream p1){ return 0; }
|
||||
public static int copy(Reader p0, Writer p1){ return 0; }
|
||||
public static void copy(String p0, Writer p1){}
|
||||
public static void copy(byte[] p0, File p1){}
|
||||
public static void copy(byte[] p0, OutputStream p1){}
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
// Generated automatically from org.springframework.util.FileSystemUtils for testing purposes
|
||||
|
||||
package org.springframework.util;
|
||||
|
||||
import java.io.File;
|
||||
import java.nio.file.Path;
|
||||
|
||||
abstract public class FileSystemUtils
|
||||
{
|
||||
public FileSystemUtils(){}
|
||||
public static boolean deleteRecursively(File p0){ return false; }
|
||||
public static boolean deleteRecursively(Path p0){ return false; }
|
||||
public static void copyRecursively(File p0, File p1){}
|
||||
public static void copyRecursively(Path p0, Path p1){}
|
||||
}
|
||||
Reference in New Issue
Block a user