提交 4c7d0ce4 authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Use getNoCopy() in ValueBytes.convertPrecision()

上级 55f9f15f
...@@ -153,8 +153,7 @@ public class ValueBytes extends Value { ...@@ -153,8 +153,7 @@ public class ValueBytes extends Value {
return this; return this;
} }
int len = MathUtils.convertLongToInt(precision); int len = MathUtils.convertLongToInt(precision);
byte[] buff = Arrays.copyOf(value, len); return getNoCopy(Arrays.copyOf(value, len));
return get(buff);
} }
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论