12483: Remove dead code, update tests.
[arvados.git] / sdk / go / keepclient / keepclient.go
index c3d63ed30c2d8e1333a7ff94d0a95b780e624f0f..4bc0fc5996368175c905b267aed26a2265a58003 100644 (file)
@@ -294,7 +294,7 @@ func (kc *KeepClient) Get(locator string) (io.ReadCloser, int64, string, error)
 
 // ReadAt() retrieves a portion of block from the cache if it's
 // present, otherwise from the network.
-func (kc *KeepClient) ReadAt(locator string, p []byte, off int64) (int, error) {
+func (kc *KeepClient) ReadAt(locator string, p []byte, off int) (int, error) {
        return kc.cache().ReadAt(kc, locator, p, off)
 }