Improve javadoc. Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/17a45874 Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/17a45874 Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/17a45874
Branch: refs/heads/master Commit: 17a458742b6848c87ce39c5b20496c8ea4dab1db Parents: bd3e012 Author: Andy Seaborne <[email protected]> Authored: Sun Mar 13 17:00:34 2016 +0000 Committer: Andy Seaborne <[email protected]> Committed: Sun Mar 13 17:00:34 2016 +0000 ---------------------------------------------------------------------- jena-base/src/main/java/org/apache/jena/atlas/lib/BitsLong.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/17a45874/jena-base/src/main/java/org/apache/jena/atlas/lib/BitsLong.java ---------------------------------------------------------------------- diff --git a/jena-base/src/main/java/org/apache/jena/atlas/lib/BitsLong.java b/jena-base/src/main/java/org/apache/jena/atlas/lib/BitsLong.java index e147033..d555fb7 100644 --- a/jena-base/src/main/java/org/apache/jena/atlas/lib/BitsLong.java +++ b/jena-base/src/main/java/org/apache/jena/atlas/lib/BitsLong.java @@ -32,7 +32,7 @@ public final class BitsLong private static int LongLen = Long.SIZE ; /** Extract the value packed into bits start (inclusive) and finish (exclusive), - * the value is returned the low part of the returned long. + * the value is returned shifted into the low part of the returned long. * The low bit is bit zero. * @param bits * @param start @@ -73,6 +73,7 @@ public final class BitsLong * @param startChar Index of first character (counted from the left, string style). * @param finishChar Index after the last character (counted from the left, string style). * @return long + * @see #access(long, int, int) */ public static final
