mirror of
https://github.com/github/codeql.git
synced 2026-04-29 02:35:15 +02:00
Java: fix generated stub causing lang test failure
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
package org.apache.hc.core5.http;
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.util.List;
|
||||
@@ -12,9 +13,9 @@ import org.apache.hc.core5.http.Header;
|
||||
|
||||
public interface HttpEntity extends Closeable, EntityDetails
|
||||
{
|
||||
InputStream getContent();
|
||||
InputStream getContent() throws IOException, UnsupportedOperationException;
|
||||
Supplier<List<? extends Header>> getTrailers();
|
||||
boolean isRepeatable();
|
||||
boolean isStreaming();
|
||||
void writeTo(OutputStream p0);
|
||||
void writeTo(OutputStream p0) throws IOException;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user