File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
pythonforandroid/bootstraps/webview/build
src/main/java/org/kivy/android Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 1313import org .kivy .android .PythonActivity ;
1414
1515public class WebViewLoader {
16- private static final String TAG = "WebViewLoader" ;
16+ private static final String TAG = "WebViewLoader" ;
1717
1818 public static void testConnection () {
1919
You can’t perform that action at this time.
0 commit comments