[
https://issues.apache.org/jira/browse/LUCENE-1686?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Uwe Schindler closed LUCENE-1686.
---------------------------------
Resolution: Fixed
Comitted revision 784094.
This was my fault, because I refactored the class and missed to remove this
unnecessary check. Before there was also support for java.io.File instead of
o.a.l.store.Directory in this class for which this null-check was.
I removed the initial null check in the ctor, as it is not necessary (this
class is internal only and never called with NULL directory).
> Remove Unnecessary NULL check in FindSegmentsFile - cleanup
> -----------------------------------------------------------
>
> Key: LUCENE-1686
> URL: https://issues.apache.org/jira/browse/LUCENE-1686
> Project: Lucene - Java
> Issue Type: Improvement
> Reporter: Simon Willnauer
> Assignee: Uwe Schindler
> Priority: Trivial
> Fix For: 2.9, 3.0
>
> Attachments: segments_info.patch
>
>
> FindSegmentsFile accesses the member "directory" in line 579 while performing
> a null check in 592. The null check is unnecessary as if directory is null
> line 579 would throw a NPE.
> I removed the null check and made the member "directory" final. In addition I
> added a null check in the constructor as If the value is null we should catch
> it asap.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]