[
https://issues.apache.org/jira/browse/GORA-266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16410532#comment-16410532
]
ASF GitHub Bot commented on GORA-266:
-------------------------------------
Github user lewismc commented on a diff in the pull request:
https://github.com/apache/gora/pull/131#discussion_r176596674
--- 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 --
You mean an enhanced for loop? From what I can see the variable ```i``` is
used outside of the ```for(i=0; i<boolArray.length; i++) {``` statement in line
447 at ```if(i % 8 != 0) {```
> Lucene datastore for Gora
> -------------------------
>
> Key: GORA-266
> URL: https://issues.apache.org/jira/browse/GORA-266
> Project: Apache Gora
> Issue Type: New Feature
> Components: gora-lucene
> Reporter: Lewis John McGibbney
> Assignee: Lewis John McGibbney
> Priority: Minor
> Labels: features
> Fix For: 0.9
>
> Attachments: GORA-266.patch
>
>
> Sometimes we don't need to set up, administer, maintain and configure a
> running solr server(s).
> Sometime we just want to write to Lucene index files and read directly from
> them.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)