Skip to content

Commit

Permalink
Remove unwanted println in PullOp
Browse files Browse the repository at this point in the history
Fixes #91
  • Loading branch information
ajoberstar committed Jan 2, 2016
1 parent 8e62c08 commit eed79dd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/groovy/org/ajoberstar/grgit/operation/PullOp.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,10 @@ class PullOp implements Callable<Void> {
if (remote) { cmd.remote = remote }
if (branch) { cmd.remoteBranchName = branch }
cmd.rebase = rebase
TransportOpUtil.configure(cmd, repo.credentials)
TransportOpUtil.configure(cmd, repo.credentials)

try {
PullResult result = cmd.call()
println result
if (!result.successful) {
throw new GrgitException("Could not pull: ${result}")
}
Expand Down

0 comments on commit eed79dd

Please sign in to comment.