Skip to content

Commit e6db010

Browse files
committed
Remove () around return expression.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1072756 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7b24a09 commit e6db010

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/java/org/apache/commons/codec/binary/Base32.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,6 @@ void encode(byte[] in, int inPos, int inAvail) { // package protected for access
466466
* @return <code>true</code> if the value is defined in the the Base32 alphabet <code>false</code> otherwise.
467467
*/
468468
public boolean isInAlphabet(byte octet) {
469-
return (octet >= 0 && octet < decodeTable.length && decodeTable[octet] != -1);
469+
return octet >= 0 && octet < decodeTable.length && decodeTable[octet] != -1;
470470
}
471471
}

src/java/org/apache/commons/codec/binary/Base64.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ static byte[] toIntegerBytes(BigInteger bigInt) {
777777
* @return <code>true</code> if the value is defined in the the Base32 alphabet <code>false</code> otherwise.
778778
*/
779779
protected boolean isInAlphabet(byte octet) {
780-
return (octet >= 0 && octet < decodeTable.length && decodeTable[octet] != -1);
780+
return octet >= 0 && octet < decodeTable.length && decodeTable[octet] != -1;
781781
}
782782

783783
}

0 commit comments

Comments
 (0)