diff options
author | techknowlogick <techknowlogick@gitea.io> | 2020-09-22 13:02:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-22 20:02:16 +0300 |
commit | 1c3278c2fa7733e61dbca92cbb3e8cd5ce6a848b (patch) | |
tree | ad63d17954e5872de0a82755f2be5f62859d118b /vendor/github.com/mattn/go-runewidth/runewidth.go | |
parent | 63e8bdaf739519c800498dac87b4f362b3c6f478 (diff) | |
download | gitea-1c3278c2fa7733e61dbca92cbb3e8cd5ce6a848b.tar.gz gitea-1c3278c2fa7733e61dbca92cbb3e8cd5ce6a848b.zip |
update revive lint to latest commit (#12921)
* update revive lint to latest commit
* make fmt
* change import
Diffstat (limited to 'vendor/github.com/mattn/go-runewidth/runewidth.go')
-rw-r--r-- | vendor/github.com/mattn/go-runewidth/runewidth.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vendor/github.com/mattn/go-runewidth/runewidth.go b/vendor/github.com/mattn/go-runewidth/runewidth.go index 8d64da0778..19f8e0449b 100644 --- a/vendor/github.com/mattn/go-runewidth/runewidth.go +++ b/vendor/github.com/mattn/go-runewidth/runewidth.go @@ -50,7 +50,6 @@ func inTables(r rune, ts ...table) bool { } func inTable(r rune, t table) bool { - // func (t table) IncludesRune(r rune) bool { if r < t[0].first { return false } |