Skip to content

Commit

Permalink
Merge 16fcf49 into 0a0cfc2
Browse files Browse the repository at this point in the history
  • Loading branch information
evalphobia committed Jun 28, 2019
2 parents 0a0cfc2 + 16fcf49 commit eb0b3e7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions rekognition/client_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package rekognition
import (
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"

Expand Down Expand Up @@ -320,7 +319,7 @@ func (svc *Rekognition) CompareFacesByBytes(source, target []byte) (*CompareFace

// CompareFaces executes `CompareFaces` operation and gets celebrities info.
func (svc *Rekognition) CompareFaces(input *SDK.CompareFacesInput) (*CompareFaceResponse, error) {
return svc.CompareFaces(input)
return svc.compareFaces(input)
}

// compareFaces executes `CompareFaces` operation and gets celebrities info.
Expand All @@ -331,7 +330,6 @@ func (svc *Rekognition) compareFaces(input *SDK.CompareFacesInput) (*CompareFace
return &CompareFaceResponse{}, err
}

fmt.Printf("op=%#v\n", op)
return NewCompareFaceResponseFromAWSOutput(op), nil
}

Expand Down

0 comments on commit eb0b3e7

Please sign in to comment.