Skip to content

Commit fe62254

Browse files
committed
Javadoc nits.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130427 13f79535-47bb-0310-9956-ffa450edef68
1 parent 2943811 commit fe62254

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
3232
* @author Apache Software Foundation
3333
* @since 1.0-dev
34-
* @version $Id: Base64.java,v 1.20 2004/05/24 00:21:24 ggregory Exp $
34+
* @version $Id: Base64.java,v 1.21 2004/10/20 01:37:54 ggregory Exp $
3535
*/
3636
public class Base64 implements BinaryEncoder, BinaryDecoder {
3737

@@ -146,7 +146,7 @@ private static boolean isBase64(byte octect) {
146146
* only valid characters within the Base64 alphabet.
147147
*
148148
* @param arrayOctect byte array to test
149-
* @return true if all bytes are valid characters in the Base64
149+
* @return <code>true</code> if all bytes are valid characters in the Base64
150150
* alphabet or if the byte array is empty; false, otherwise
151151
*/
152152
public static boolean isArrayByteBase64(byte[] arrayOctect) {
@@ -225,7 +225,7 @@ public byte[] decode(byte[] pArray) {
225225
* chunking the output into 76 character blocks.
226226
*
227227
* @param binaryData Array containing binary data to encode.
228-
* @param isChunked if isChunked is true this encoder will chunk
228+
* @param isChunked if <code>true</code> this encoder will chunk
229229
* the base64 output into 76 character blocks
230230
* @return Base64-encoded data.
231231
*/

src/java/org/apache/commons/codec/language/Metaphone.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* </p>
3232
*
3333
* @author Apache Software Foundation
34-
* @version $Id: Metaphone.java,v 1.21 2004/10/08 22:56:22 ggregory Exp $
34+
* @version $Id: Metaphone.java,v 1.22 2004/10/20 01:37:54 ggregory Exp $
3535
*/
3636
public class Metaphone implements StringEncoder {
3737

@@ -377,8 +377,8 @@ public String encode(String pString) {
377377
*
378378
* @param str1 First of two strings to compare
379379
* @param str2 Second of two strings to compare
380-
* @return true if the metaphones of these strings are identical,
381-
* false otherwise.
380+
* @return <code>true</code> if the metaphones of these strings are identical,
381+
* <code>false</code> otherwise.
382382
*/
383383
public boolean isMetaphoneEqual(String str1, String str2) {
384384
return metaphone(str1).equals(metaphone(str2));

0 commit comments

Comments
 (0)