2
0

Remove unreachable code

The returns can never be reached because the loop is guaranteed to return.
This commit is contained in:
Lukas Vogel
2019-03-18 14:20:19 +01:00
parent 051e69d512
commit 03c00d5e41
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -334,6 +334,4 @@ func (c *Conn) CopyFromReader(r io.Reader, sql string) error {
return c.processContextFreeMsg(msg)
}
}
return nil
}
-2
View File
@@ -59,6 +59,4 @@ func (c *Conn) CopyToWriter(w io.Writer, sql string, args ...interface{}) error
return c.processContextFreeMsg(msg)
}
}
return nil
}