Files
tendermint/common
Emmanuel T Odeke 4b0058dd64 common: remove {Left, Right}PadString (#168)
Fixes #134

Those functions are unused in the whole Tendermint Github
organization plus they were unnecessariy verbose and could
have been concisely replaced with

```go
func RightPadString(s string, totalLength uint) string {
       return fmt.Sprintf("% *s", totalLength, s)
}

func LeftPadString(s string, totalLength uint) string {
       return fmt.Sprintf("% -*s", totalLength, s)
}
```

delete them anyways
2018-03-18 15:19:23 +04:00
..
2018-01-02 11:05:53 -05:00
2018-01-02 11:05:53 -05:00
2017-09-20 02:49:51 -04:00
2017-11-04 00:10:59 -05:00
2017-06-20 17:18:55 -04:00
2017-06-20 17:18:55 -04:00
2018-03-17 16:32:49 +01:00
2017-12-10 14:23:27 -08:00
2017-11-29 12:18:03 -06:00
2017-07-19 15:02:04 -04:00
2017-07-19 15:02:04 -04:00
2017-10-25 11:01:52 +04:00
2017-11-04 08:14:47 -05:00
2018-03-18 01:50:15 +01:00
2018-02-12 19:12:24 -05:00
2017-11-27 23:42:36 -06:00
2018-03-15 09:43:23 -07:00