Explorar o código

chore: add comments

kevin %!s(int64=2) %!d(string=hai) anos
pai
achega
dd347e96b0
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      core/conf/config.go

+ 3 - 1
core/conf/config.go

@@ -258,13 +258,15 @@ func buildStructFieldsInfo(tp reflect.Type) (*fieldInfo, error) {
 	return info, nil
 	return info, nil
 }
 }
 
 
+// getTagName get the tag name of the given field, if no tag name, use file.Name.
+// field.Name is returned on tags like `json:""` and `json:",optional"`.
 func getTagName(field reflect.StructField) string {
 func getTagName(field reflect.StructField) string {
 	if tag, ok := field.Tag.Lookup(jsonTagKey); ok {
 	if tag, ok := field.Tag.Lookup(jsonTagKey); ok {
 		if pos := strings.IndexByte(tag, jsonTagSep); pos >= 0 {
 		if pos := strings.IndexByte(tag, jsonTagSep); pos >= 0 {
 			tag = tag[:pos]
 			tag = tag[:pos]
 		}
 		}
-		tag = strings.TrimSpace(tag)
 
 
+		tag = strings.TrimSpace(tag)
 		if len(tag) > 0 {
 		if len(tag) > 0 {
 			return tag
 			return tag
 		}
 		}