You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2016/02/14 01:06:04 UTC

lucene-solr git commit: LUCENE-7028: Fix typo

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_5x 3e5e54847 -> a011c1692


LUCENE-7028: Fix typo


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/a011c169
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/a011c169
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/a011c169

Branch: refs/heads/branch_5x
Commit: a011c1692bba52c1f7b430b9bb4d03001fc1034a
Parents: 3e5e548
Author: Uwe Schindler <us...@apache.org>
Authored: Sun Feb 14 01:05:55 2016 +0100
Committer: Uwe Schindler <us...@apache.org>
Committed: Sun Feb 14 01:05:55 2016 +0100

----------------------------------------------------------------------
 lucene/core/src/java/org/apache/lucene/util/NumericUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/a011c169/lucene/core/src/java/org/apache/lucene/util/NumericUtils.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/util/NumericUtils.java b/lucene/core/src/java/org/apache/lucene/util/NumericUtils.java
index e990234..3798157 100644
--- a/lucene/core/src/java/org/apache/lucene/util/NumericUtils.java
+++ b/lucene/core/src/java/org/apache/lucene/util/NumericUtils.java
@@ -130,7 +130,7 @@ public final class NumericUtils {
    * @param val the numeric value
    * @param shift how many bits to strip from the right
    * @param bytes will contain the encoded value
-   * @deprecated Use {@link #longToPrefixCoded} instead.
+   * @deprecated Use {@link #intToPrefixCoded} instead.
    */
   @Deprecated
   public static void intToPrefixCodedBytes(final int val, final int shift, final BytesRefBuilder bytes) {