Skip to content

Commit df2178b

Browse files
authored
Fix Java code indentation (#2273)
1 parent 4db3116 commit df2178b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pythonforandroid/bootstraps/webview/build/src/main/java/org/kivy/android/PythonActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public String getEntryPoint(String search_dir) {
6969
List<String> entryPoints = new ArrayList<String>();
7070
entryPoints.add("main.pyo"); // python 2 compiled files
7171
entryPoints.add("main.pyc"); // python 3 compiled files
72-
for (String value : entryPoints) {
72+
for (String value : entryPoints) {
7373
File mainFile = new File(search_dir + "/" + value);
7474
if (mainFile.exists()) {
7575
return value;
@@ -303,7 +303,7 @@ protected void showLoadingScreen() {
303303
mImageView.setImageBitmap(bitmap);
304304

305305
/*
306-
* Set the presplash loading screen background color
306+
* Set the presplash loading screen background color
307307
* https://developer.android.com/reference/android/graphics/Color.html
308308
* Parse the color string, and return the corresponding color-int.
309309
* If the string cannot be parsed, throws an IllegalArgumentException exception.

pythonforandroid/bootstraps/webview/build/templates/WebViewLoader.tmpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import org.kivy.android.PythonActivity;
1414

1515
public class WebViewLoader {
16-
private static final String TAG = "WebViewLoader";
16+
private static final String TAG = "WebViewLoader";
1717

1818
public static void testConnection() {
1919

0 commit comments

Comments
 (0)