Skip to content

Commit

Permalink
Merge pull request #16 from javjar/master
Browse files Browse the repository at this point in the history
Removing the Println statement in the Encode method
  • Loading branch information
alwindoss authored Oct 6, 2018
2 parents 2e07edf + 038dd76 commit 8719212
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions morse.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package morse

import (
"fmt"
"io"
"io/ioutil"
"strings"
Expand Down Expand Up @@ -49,7 +48,6 @@ func (h *hacker) Encode(r io.Reader) ([]byte, error) {
encodedValue += " " + "/" + " "
}
}
fmt.Println(encodedValue)
return []byte(encodedValue), nil
}

Expand Down

0 comments on commit 8719212

Please sign in to comment.