Remove unnecessary semicolons from Android Java code

(cherry picked from commit 360447001d1e1f750ddc69c58a8d60a67dc93879)
This commit is contained in:
Marcel Admiraal 2021-07-02 08:54:09 +01:00 committed by Rémi Verschelde
parent ca1a2e1124
commit 2b78d618f4
No known key found for this signature in database
GPG Key ID: C3336907360768E1
3 changed files with 11 additions and 11 deletions

View File

@ -43,10 +43,10 @@ public class Dictionary extends HashMap<String, Object> {
for (String key : keys) {
ret[i] = key;
i++;
};
}
return ret;
};
}
public Object[] get_values() {
Object[] ret = new Object[size()];
@ -55,21 +55,21 @@ public class Dictionary extends HashMap<String, Object> {
for (String key : keys) {
ret[i] = get(key);
i++;
};
}
return ret;
};
}
public void set_keys(String[] keys) {
keys_cache = keys;
};
}
public void set_values(Object[] vals) {
int i = 0;
for (String key : keys_cache) {
put(key, vals[i]);
i++;
};
}
keys_cache = null;
};
};
}
}

View File

@ -313,7 +313,7 @@ public class Godot extends Fragment implements SensorEventListener, IDownloaderC
for (int i = 0; i < permissions.length; i++) {
GodotLib.requestPermissionResult(permissions[i], grantResults[i] == PackageManager.PERMISSION_GRANTED);
}
};
}
/**
* Invoked on the render thread when the Godot setup is complete.

View File

@ -409,12 +409,12 @@ public class GodotIO {
//InputMethodManager inputMgr = (InputMethodManager)activity.getSystemService(Context.INPUT_METHOD_SERVICE);
//inputMgr.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
};
}
public void hideKeyboard() {
if (edit != null)
edit.hideKeyboard();
};
}
public void setScreenOrientation(int p_orientation) {
switch (p_orientation) {