From 3a642bdf465354cb87e42d99e07297172b4503cb Mon Sep 17 00:00:00 2001 From: AMIT SHEKHAR Date: Thu, 22 Jun 2017 12:12:21 +0530 Subject: [PATCH] Correct indentation --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 186fcd3..44586e5 100644 --- a/README.md +++ b/README.md @@ -79,16 +79,16 @@ You will see something like this : As this library is auto-initialize, if you want to get the address log, add the following method and call ```java public static void showDebugDBAddressLogToast(Context context) { - if (BuildConfig.DEBUG) { - try { - Class debugDB = Class.forName("com.amitshekhar.DebugDB"); - Method getAddressLog = debugDB.getMethod("getAddressLog"); - Object value = getAddressLog.invoke(null); - Toast.makeText(context, (String) value, Toast.LENGTH_LONG).show(); - } catch (Exception ignore) { - - } - } + if (BuildConfig.DEBUG) { + try { + Class debugDB = Class.forName("com.amitshekhar.DebugDB"); + Method getAddressLog = debugDB.getMethod("getAddressLog"); + Object value = getAddressLog.invoke(null); + Toast.makeText(context, (String) value, Toast.LENGTH_LONG).show(); + } catch (Exception ignore) { + + } + } } ```