From 153818f7fb581dd7dc47e72aecab4986720c593d Mon Sep 17 00:00:00 2001 From: agnostic-apollo Date: Mon, 12 Apr 2021 18:26:18 +0500 Subject: [PATCH] Fix typos --- .../main/java/com/termux/shared/packages/PermissionUtils.java | 2 +- .../com/termux/shared/settings/properties/SharedProperties.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/termux-shared/src/main/java/com/termux/shared/packages/PermissionUtils.java b/termux-shared/src/main/java/com/termux/shared/packages/PermissionUtils.java index d97895a0..ff57a135 100644 --- a/termux-shared/src/main/java/com/termux/shared/packages/PermissionUtils.java +++ b/termux-shared/src/main/java/com/termux/shared/packages/PermissionUtils.java @@ -21,7 +21,7 @@ public class PermissionUtils { public static final int ACTION_MANAGE_OVERLAY_PERMISSION_REQUEST_CODE = 0; - private static final String LOG_TAG = "PluginUtils"; + private static final String LOG_TAG = "PermissionUtils"; public static boolean checkPermissions(Context context, String[] permissions) { int result; diff --git a/termux-shared/src/main/java/com/termux/shared/settings/properties/SharedProperties.java b/termux-shared/src/main/java/com/termux/shared/settings/properties/SharedProperties.java index 72cf0dad..9c808e93 100644 --- a/termux-shared/src/main/java/com/termux/shared/settings/properties/SharedProperties.java +++ b/termux-shared/src/main/java/com/termux/shared/settings/properties/SharedProperties.java @@ -126,7 +126,7 @@ public class SharedProperties { Object internalValue; for (String key : propertiesList) { value = properties.getProperty(key); // value will be null if key does not exist in propertiesFile - Logger.logDebug(LOG_TAG, key + " : " + value); + // Logger.logVerbose(LOG_TAG, key + " : " + value); // Call the {@link SharedPropertiesParser#getInternalPropertyValueFromValue(Context,String,String)} // interface method to get the internal value to store in the {@link #mMap}.