improve code quality
* fill empty block of code
This commit is contained in:
parent
a4ebc2066e
commit
819ec2164c
@ -49,6 +49,7 @@
|
|||||||
|
|
||||||
## Fix Sonar
|
## Fix Sonar
|
||||||
|
|
||||||
|
- [4624](https://github.com/beego/beego/pull/4624)
|
||||||
- [4608](https://github.com/beego/beego/pull/4608)
|
- [4608](https://github.com/beego/beego/pull/4608)
|
||||||
- [4473](https://github.com/beego/beego/pull/4473)
|
- [4473](https://github.com/beego/beego/pull/4473)
|
||||||
- [4474](https://github.com/beego/beego/pull/4474)
|
- [4474](https://github.com/beego/beego/pull/4474)
|
||||||
|
|||||||
@ -250,7 +250,8 @@ func (c *Controller) Bind(obj interface{}) error {
|
|||||||
return c.BindJson(obj)
|
return c.BindJson(obj)
|
||||||
}
|
}
|
||||||
i, l := 0, len(ct[0])
|
i, l := 0, len(ct[0])
|
||||||
for ; i < l && ct[0][i] != ';'; i++ {
|
for i < l && ct[0][i] != ';' {
|
||||||
|
i++
|
||||||
}
|
}
|
||||||
switch ct[0][0:i] {
|
switch ct[0][0:i] {
|
||||||
case "application/json":
|
case "application/json":
|
||||||
|
|||||||
@ -294,7 +294,8 @@ func (t *Tree) Match(pattern string, ctx *context.Context) (runObject interface{
|
|||||||
func (t *Tree) match(treePattern string, pattern string, wildcardValues []string, ctx *context.Context) (runObject interface{}) {
|
func (t *Tree) match(treePattern string, pattern string, wildcardValues []string, ctx *context.Context) (runObject interface{}) {
|
||||||
if len(pattern) > 0 {
|
if len(pattern) > 0 {
|
||||||
i, l := 0, len(pattern)
|
i, l := 0, len(pattern)
|
||||||
for ; i < l && pattern[i] == '/'; i++ {
|
for i < l && pattern[i] == '/' {
|
||||||
|
i++
|
||||||
}
|
}
|
||||||
pattern = pattern[i:]
|
pattern = pattern[i:]
|
||||||
}
|
}
|
||||||
@ -316,7 +317,8 @@ func (t *Tree) match(treePattern string, pattern string, wildcardValues []string
|
|||||||
}
|
}
|
||||||
var seg string
|
var seg string
|
||||||
i, l := 0, len(pattern)
|
i, l := 0, len(pattern)
|
||||||
for ; i < l && pattern[i] != '/'; i++ {
|
for i < l && pattern[i] != '/' {
|
||||||
|
i++
|
||||||
}
|
}
|
||||||
if i == 0 {
|
if i == 0 {
|
||||||
seg = pattern
|
seg = pattern
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user