summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/symtab/Names.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/tools/nsc/symtab/Names.scala')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/Names.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/Names.scala b/src/compiler/scala/tools/nsc/symtab/Names.scala
index 7eccb9a49f..a51e0a26b1 100644
--- a/src/compiler/scala/tools/nsc/symtab/Names.scala
+++ b/src/compiler/scala/tools/nsc/symtab/Names.scala
@@ -96,8 +96,10 @@ trait Names extends reflect.generic.Names {
/** Create a term name from the UTF8 encoded bytes in bs[offset..offset+len-1].
*/
- def newTermName(bs: Array[Byte], offset: Int, len: Int): TermName =
- newTermName(Codec fromUTF8 bs.slice(offset, offset + len) mkString)
+ def newTermName(bs: Array[Byte], offset: Int, len: Int): TermName = {
+ val chars = Codec fromUTF8 bs.slice(offset, offset + len)
+ newTermName(chars, 0, chars.length)
+ }
/** Create a type name from the characters in cs[offset..offset+len-1].
*/