Style: Fix statements ending with ';;'
This commit is contained in:
@@ -1918,7 +1918,7 @@ void VisualScriptEditor::drop_data_fw(const Point2& p_point,const Variant& p_dat
|
||||
Ref<VisualScriptFunctionCall> call;
|
||||
call.instance();
|
||||
call->set_call_mode(VisualScriptFunctionCall::CALL_MODE_NODE_PATH);
|
||||
call->set_base_path(sn->get_path_to(node));;
|
||||
call->set_base_path(sn->get_path_to(node));
|
||||
call->set_base_type(node->get_class());
|
||||
n=call;
|
||||
|
||||
|
||||
@@ -3615,7 +3615,7 @@ void VisualScriptInputAction::_validate_property(PropertyInfo& property) const {
|
||||
al.push_back(name);
|
||||
}
|
||||
|
||||
al.sort();;
|
||||
al.sort();
|
||||
|
||||
for(int i=0;i<al.size();i++) {
|
||||
if (actions!=String())
|
||||
@@ -3705,7 +3705,7 @@ String VisualScriptDeconstruct::get_category() const {
|
||||
|
||||
void VisualScriptDeconstruct::_update_elements() {
|
||||
|
||||
elements.clear();;
|
||||
elements.clear();
|
||||
Variant v;
|
||||
if (type==Variant::INPUT_EVENT) {
|
||||
InputEvent ie;
|
||||
|
||||
Reference in New Issue
Block a user