Style: Fix statements ending with ';;'
This commit is contained in:
parent
e2a3f06f3d
commit
f44ee891be
111 changed files with 227 additions and 227 deletions
|
|
@ -1576,7 +1576,7 @@ Error GDCompiler::_parse_function(GDScript *p_script,const GDParser::ClassNode *
|
|||
//funciton and class
|
||||
|
||||
if (p_class->name) {
|
||||
signature+="::"+String(p_class->name)+"."+String(func_name);;
|
||||
signature+="::"+String(p_class->name)+"."+String(func_name);
|
||||
} else {
|
||||
signature+="::"+String(func_name);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2914,7 +2914,7 @@ Error GDScriptLanguage::lookup_code(const String& p_code, const String& p_symbol
|
|||
Ref<GDNativeClass> gdn = t.value;
|
||||
if (gdn.is_valid()) {
|
||||
r_result.type=ScriptLanguage::LookupResult::RESULT_CLASS_CONSTANT;
|
||||
r_result.class_name=gdn->get_name();;
|
||||
r_result.class_name=gdn->get_name();
|
||||
r_result.class_member=p_symbol;
|
||||
return OK;
|
||||
|
||||
|
|
|
|||
|
|
@ -555,7 +555,7 @@ void GDFunctions::call(Function p_func,const Variant **p_args,int p_arg_count,Va
|
|||
String str;
|
||||
for(int i=0;i<p_arg_count;i++) {
|
||||
|
||||
String os = p_args[i]->operator String();;
|
||||
String os = p_args[i]->operator String();
|
||||
|
||||
if (i==0)
|
||||
str=os;
|
||||
|
|
|
|||
|
|
@ -541,7 +541,7 @@ bool GDScript::_update_exports() {
|
|||
}
|
||||
}
|
||||
|
||||
members_cache.clear();;
|
||||
members_cache.clear();
|
||||
member_default_values_cache.clear();
|
||||
|
||||
for(int i=0;i<c->variables.size();i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue