Skip to content

Commit 5edc9e8

Browse files
committed
[_] fmt
1 parent 9649a1d commit 5edc9e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xfs/process.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ func init() {
3535
func processUpload(process *gou.Process) interface{} {
3636
process.ValidateArgNums(1)
3737

38-
var tmpfile xun.UploadFile
38+
var tmpfile xun.UploadFile
3939
data, err := jsoniter.Marshal(process.Args[0])
4040
if err != nil {
4141
exception.New("上传文件参数错误 %s %v", 400, err.Error(), process.Args[0]).Throw()
4242
}
4343

4444
err = jsoniter.Unmarshal(data, &tmpfile)
45-
if err != nil {
45+
if err != nil {
4646
exception.New("上传文件参数错误 %s %v", 400, err.Error(), process.Args[0]).Throw()
4747
}
4848

0 commit comments

Comments
 (0)