From ac664ba3104dc31311c9cfbfa07030185db16b70 Mon Sep 17 00:00:00 2001 From: Mark Robert Miller Date: Fri, 27 Jan 2012 20:53:15 +0000 Subject: [PATCH] fix bad javadoc git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1236884 13f79535-47bb-0310-9956-ffa450edef68 --- solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java b/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java index b00bba19169..43d024f3ed8 100644 --- a/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java +++ b/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java @@ -76,7 +76,7 @@ public class ByteUtils { /** Writes UTF8 into the byte array, starting at offset. The caller should ensure that * there is enough space for the worst-case scenario. - * @returns the number of bytes written + * @return the number of bytes written */ public static int UTF16toUTF8(CharSequence s, int offset, int len, byte[] result, int resultOffset) { final int end = offset + len;