Remove Read method

This commit is contained in:
Slavomir
2020-08-05 18:37:35 +02:00
parent 6fda46b565
commit b0259632e1

View File

@@ -34,10 +34,6 @@ module CompressGzip {
FunctionOutput outp;
MethodModels() {
// signature: func (*Reader).Read(p []byte) (n int, err error)
this.hasQualifiedName("compress/gzip", "Reader", "Read") and
(inp.isReceiver() and outp.isParameter(0))
or
// signature: func (*Reader).Reset(r io.Reader) error
this.hasQualifiedName("compress/gzip", "Reader", "Reset") and
(inp.isParameter(0) and outp.isReceiver())