File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1066,11 +1066,13 @@ MetadataNode::ExtendedClassCacheData MetadataNode::GetCachedExtendedClassData(Is
1066
1066
return cacheData;
1067
1067
}
1068
1068
1069
- string MetadataNode::CreateFullClassName (const std::string& className, const std::string& extendNameAndLocation = " " ) {
1070
- string fullClassName = className + Constants::CLASS_NAME_LOCATION_SEPARATOR;
1069
+ string MetadataNode::CreateFullClassName (const std::string& className, const std::string& extendNameAndLocation = " " )
1070
+ {
1071
+ string fullClassName = className;
1071
1072
1072
- if (!extendNameAndLocation.empty ()) {
1073
- fullClassName += extendNameAndLocation;
1073
+ if (!extendNameAndLocation.empty ())
1074
+ {
1075
+ fullClassName += Constants::CLASS_NAME_LOCATION_SEPARATOR + extendNameAndLocation;
1074
1076
}
1075
1077
1076
1078
return fullClassName;
You can’t perform that action at this time.
0 commit comments