1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Style: Fix statements ending with ';;'

This commit is contained in:
Rémi Verschelde
2017-01-14 18:03:38 +01:00
parent e2a3f06f3d
commit f44ee891be
111 changed files with 227 additions and 227 deletions

View File

@@ -199,7 +199,7 @@ Array InputMap::_get_action_list(const StringName& p_action) {
if (al) {
for(const List<InputEvent>::Element *E=al->front();E;E=E->next()) {
ret.push_back(E->get());;
ret.push_back(E->get());
}
}
@@ -239,7 +239,7 @@ const Map<StringName, InputMap::Action>& InputMap::get_action_map() const {
void InputMap::load_from_globals() {
input_map.clear();;
input_map.clear();
List<PropertyInfo> pinfo;
GlobalConfig::get_singleton()->get_property_list(&pinfo);
@@ -254,7 +254,7 @@ void InputMap::load_from_globals() {
add_action(name);
Array va = GlobalConfig::get_singleton()->get(pi.name);;
Array va = GlobalConfig::get_singleton()->get(pi.name);
for(int i=0;i<va.size();i++) {