diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-01-10 05:53:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-10 05:53:17 +0800 |
commit | 02b67558e8eaa7b34a28b8dd0223824bbbb52349 (patch) | |
tree | 33bbc5057d4546d93d6d0e92b90eef19b49abb83 /console | |
parent | 91c8f87fb128c070b6c557a142e25d4428c96487 (diff) | |
parent | b9b3efb09f9281a5859646d2dcf36b5813132efb (diff) | |
download | go-tangerine-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar go-tangerine-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar.gz go-tangerine-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar.bz2 go-tangerine-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar.lz go-tangerine-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar.xz go-tangerine-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar.zst go-tangerine-02b67558e8eaa7b34a28b8dd0223824bbbb52349.zip |
Merge pull request #3535 from fjl/all-ineffassign
all: fix ineffectual assignments
Diffstat (limited to 'console')
-rw-r--r-- | console/console.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console/console.go b/console/console.go index 8865f5e89..9bb3df926 100644 --- a/console/console.go +++ b/console/console.go @@ -226,8 +226,8 @@ func (c *Console) AutoCompleteInput(line string, pos int) (string, []string, str } // Chunck data to relevant part for autocompletion // E.g. in case of nested lines eth.getBalance(eth.coinb<tab><tab> - start := 0 - for start = pos - 1; start > 0; start-- { + start := pos - 1 + for ; start > 0; start-- { // Skip all methods and namespaces (i.e. including te dot) if line[start] == '.' || (line[start] >= 'a' && line[start] <= 'z') || (line[start] >= 'A' && line[start] <= 'Z') { continue |