[ 
https://issues.apache.org/jira/browse/LUCENE-6266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14329349#comment-14329349
 ] 

ASF subversion and git services commented on LUCENE-6266:
---------------------------------------------------------

Commit 1661189 from [~rcmuir] in branch 'dev/branches/branch_5x'
[ https://svn.apache.org/r1661189 ]

LUCENE-6266: Remove unnecessary Directory parameters from SIS/SIPC/SI

> Remove unnecessary Directory parameters from SIS/SIPC/SI
> --------------------------------------------------------
>
>                 Key: LUCENE-6266
>                 URL: https://issues.apache.org/jira/browse/LUCENE-6266
>             Project: Lucene - Core
>          Issue Type: Bug
>            Reporter: Robert Muir
>             Fix For: Trunk, 5.1
>
>         Attachments: LUCENE-6266.patch
>
>
> A few methods take Directory where it makes no sense:
> {code}
> Collection SegmentInfos.files(Directory dir, boolean includeSegmentsFile);
> String SegmentInfos.toString(Directory dir);
> String SegmentCommitInfo.toString(Directory dir, int pendingDelCount);
> String SegmentInfo.toString(Directory dir, int delCount);
> {code}
> The incoming Directory parameter for files() is bogus, if assertions are 
> enabled, it fails if any underlying segment's 'dir' differs. But if 
> assertions are not enabled, it just silently drops them. If we want to add 
> safety around this kind of thing, this is not the way.
> For toString(), it just makes the API hard to use for everyone. This change 
> means commits have a working Object.toString() method.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to