diff options
author | 6543 <6543@obermui.de> | 2021-04-09 09:40:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 09:40:34 +0200 |
commit | 9c4601bdf8369ed72944085e3952111cf4aeea11 (patch) | |
tree | 2dcadaabed6dbe14ddba2d2513b736ff6b7f089f /modules/references/references.go | |
parent | 0991f9aa427ab923544c35d73232fa53c9db9120 (diff) | |
download | gitea-9c4601bdf8369ed72944085e3952111cf4aeea11.tar.gz gitea-9c4601bdf8369ed72944085e3952111cf4aeea11.zip |
Code Formats, Nits & Unused Func/Var deletions (#15286)
* _ to unused func options
* rm useless brakets
* rm trifial non used models functions
* rm dead code
* rm dead global vars
* fix routers/api/v1/repo/issue.go
* dont overload import module
Diffstat (limited to 'modules/references/references.go')
-rw-r--r-- | modules/references/references.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/references/references.go b/modules/references/references.go index c243f25f5d..6c0db0cf47 100644 --- a/modules/references/references.go +++ b/modules/references/references.go @@ -296,7 +296,7 @@ func convertFullHTMLReferencesToShortRefs(re *regexp.Regexp, contentBytes *[]byt // our new section has length endPos - match[3] // our old section has length match[9] - match[3] - (*contentBytes) = (*contentBytes)[:len((*contentBytes))-match[9]+endPos] + *contentBytes = (*contentBytes)[:len(*contentBytes)-match[9]+endPos] pos = endPos } } |