This is an automated email from the ASF dual-hosted git repository.
ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/fluo.git
The following commit(s) were added to refs/heads/master by this push:
new 8b7354e Javadoc mistake (#1092)
8b7354e is described below
commit 8b7354eb5216f7315f2eb95723df5edc60118d60
Author: Andrew Habib <[email protected]>
AuthorDate: Wed May 6 09:40:55 2020 +0200
Javadoc mistake (#1092)
Fix documentation of type of exception thrown by byteAt.
---
modules/api/src/main/java/org/apache/fluo/api/data/Bytes.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/api/src/main/java/org/apache/fluo/api/data/Bytes.java
b/modules/api/src/main/java/org/apache/fluo/api/data/Bytes.java
index f90fe3d..ad0d784 100644
--- a/modules/api/src/main/java/org/apache/fluo/api/data/Bytes.java
+++ b/modules/api/src/main/java/org/apache/fluo/api/data/Bytes.java
@@ -98,7 +98,7 @@ public final class Bytes implements Comparable<Bytes>,
Serializable {
*
* @param i index into sequence
* @return byte
- * @throws IllegalArgumentException if i is out of range
+ * @throws IndexOutOfBoundsException if i is out of range
*/
public byte byteAt(int i) {