Skip to content

Commit

Permalink
Fix Java code indentation (kivy#2273)
Browse files Browse the repository at this point in the history
  • Loading branch information
obfusk authored and vesellov committed Feb 10, 2021
1 parent 9885af3 commit cb6604e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public String getEntryPoint(String search_dir) {
List<String> entryPoints = new ArrayList<String>();
entryPoints.add("main.pyo"); // python 2 compiled files
entryPoints.add("main.pyc"); // python 3 compiled files
for (String value : entryPoints) {
for (String value : entryPoints) {
File mainFile = new File(search_dir + "/" + value);
if (mainFile.exists()) {
return value;
Expand Down Expand Up @@ -303,7 +303,7 @@ protected void showLoadingScreen() {
mImageView.setImageBitmap(bitmap);

/*
* Set the presplash loading screen background color
* Set the presplash loading screen background color
* https://developer.android.com/reference/android/graphics/Color.html
* Parse the color string, and return the corresponding color-int.
* If the string cannot be parsed, throws an IllegalArgumentException exception.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import org.kivy.android.PythonActivity;

public class WebViewLoader {
private static final String TAG = "WebViewLoader";
private static final String TAG = "WebViewLoader";

public static void testConnection() {

Expand Down

0 comments on commit cb6604e

Please sign in to comment.