[
https://issues.apache.org/jira/browse/AVRO-2309?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16754797#comment-16754797
]
Hudson commented on AVRO-2309:
------------------------------
FAILURE: Integrated in Jenkins build AvroJava #593 (See
[https://builds.apache.org/job/AvroJava/593/])
AVRO-2309: Conversions.java - Use JDK Array Manipulations (iemejia:
[https://github.com/apache/avro/commit/bcc79e90540f55dc9e1dd34da7a1f5901ee22b2a])
* (edit) lang/java/avro/src/main/java/org/apache/avro/Conversions.java
> Conversions.java - Use JDK Array Manipulations
> ----------------------------------------------
>
> Key: AVRO-2309
> URL: https://issues.apache.org/jira/browse/AVRO-2309
> Project: Apache Avro
> Issue Type: Improvement
> Reporter: BELUGA BEHR
> Assignee: BELUGA BEHR
> Priority: Trivial
> Fix For: 1.9.0
>
>
> {code:java|title=Conversions.java}
> for (int i = 0; i < bytes.length; i += 1) {
> if (i < offset) {
> bytes[i] = fillByte;
> } else {
> bytes[i] = unscaled[i - offset];
> }
> }
> {code}
> Improve readability with {{Arrays.fill}} method to fill the first {{offset}}
> bytes and then copy over the remaining.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)