0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-19 11:42:14 +02:00

Fix some comments (#8046)

This commit is contained in:
riskrose 2024-08-06 20:42:39 +09:00 committed by GitHub
parent 9610a844cf
commit 5481ba1247
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -473,7 +473,7 @@ public class Base64 {
*
* @param octet
* The value to test
* @return <code>true</code> if the value is defined in the the base 64 alphabet, <code>false</code> otherwise.
* @return <code>true</code> if the value is defined in the base 64 alphabet, <code>false</code> otherwise.
*/
public static boolean isBase64(byte octet) {
return octet == PAD || (octet >= 0 && octet < base64ToInt.length && base64ToInt[octet] != -1);

View File

@ -55,7 +55,7 @@ public class MimeUtility {
* </p>
* <p>
* Note: Parsing header parameters is not a very cheap operation. Prefer using {@code MimeParameterDecoder}
* directly over calling this method multiple times for extracting different parameters from the the same header.
* directly over calling this method multiple times for extracting different parameters from the same header.
* </p>
*
* @param headerBody The header body.

View File

@ -41,7 +41,7 @@ internal class RealImapFolder(
private var uidValidity: Long? = null
/**
* Specifies whether the folder was opened in read-only or read-write mode based on the the tagged OK response to
* Specifies whether the folder was opened in read-only or read-write mode based on the tagged OK response to
* the SELECT or EXAMINE command (READ-ONLY or READ-WRITE).
*
* Most of the time this will match the [mode] value. But it's possible for the SELECT command to open a folder in

View File

@ -1874,7 +1874,7 @@ public class LinearLayoutManager extends LayoutManager implements
* (reverseLayout ^ stackFromEnd).
* @param traverseChildrenInReverseOrder True if the children should be traversed in reverse
* order (stackFromEnd).
* @return A View that can be used an an anchor View.
* @return A View that can be used as an anchor View.
*/
View findReferenceChild(RecyclerView.Recycler recycler, RecyclerView.State state,
boolean layoutFromEnd, boolean traverseChildrenInReverseOrder) {