From 4e17e06f3fa64d1f3853947f85249b11dc985df6 Mon Sep 17 00:00:00 2001 From: Shubhadeep_Karmakar Date: Thu, 2 Nov 2023 19:39:43 +0530 Subject: [PATCH] little changes --- .../android/app/policies/PoliciesFragmentPresenter.kt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/org/oppia/android/app/policies/PoliciesFragmentPresenter.kt b/app/src/main/java/org/oppia/android/app/policies/PoliciesFragmentPresenter.kt index d4101bf0104..97427677d82 100644 --- a/app/src/main/java/org/oppia/android/app/policies/PoliciesFragmentPresenter.kt +++ b/app/src/main/java/org/oppia/android/app/policies/PoliciesFragmentPresenter.kt @@ -83,10 +83,9 @@ class PoliciesFragmentPresenter @Inject constructor( } } - /** - * Ensure that the Terms of Service and Privacy Policy are displayed with a left-aligned layout, - * even when the app is set to an RTL language. - */ + + // Ensure that the Terms of Service and Privacy Policy are displayed with a left-aligned layout, + // even when the app is set to an RTL language. if (resourceHandler.getLayoutDirection() == ViewCompat.LAYOUT_DIRECTION_RTL) { binding.policyDescriptionTextView.textAlignment = View.TEXT_ALIGNMENT_VIEW_END }