You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Style: Fix statements ending with ';;'
This commit is contained in:
@@ -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