From dev-return-10534-archive-asf-public=cust-asf.ponee.io@gora.apache.org Sat Mar 24 01:14:55 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 8479918064D for ; Sat, 24 Mar 2018 01:14:54 +0100 (CET) Received: (qmail 24598 invoked by uid 500); 24 Mar 2018 00:14:53 -0000 Mailing-List: contact dev-help@gora.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@gora.apache.org Delivered-To: mailing list dev@gora.apache.org Received: (qmail 24587 invoked by uid 99); 24 Mar 2018 00:14:52 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Mar 2018 00:14:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3C7AAF67C8; Sat, 24 Mar 2018 00:14:51 +0000 (UTC) From: lewismc To: dev@gora.apache.org Reply-To: dev@gora.apache.org References: In-Reply-To: Subject: [GitHub] gora pull request #131: GORA-266 Lucene datastore for Gora Content-Type: text/plain Message-Id: <20180324001452.3C7AAF67C8@git1-us-west.apache.org> Date: Sat, 24 Mar 2018 00:14:51 +0000 (UTC) Github user lewismc commented on a diff in the pull request: https://github.com/apache/gora/pull/131#discussion_r176891528 --- Diff: gora-core/src/main/java/org/apache/gora/util/IOUtils.java --- @@ -434,7 +432,7 @@ public static void writeBoolArray(DataOutput out, boolean[] boolArray) WritableUtils.writeVInt(out, boolArray.length); byte b = 0; - int i = 0; + int i; --- End diff -- @renato2099 as I said the increment is used in line 447 ---