You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2020/02/06 01:30:17 UTC

[lucene-solr] branch master updated: LUCENE-9206: add forbidden api exclusion to new class

This is an automated email from the ASF dual-hosted git repository.

rmuir pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new 196ec5f  LUCENE-9206: add forbidden api exclusion to new class
196ec5f is described below

commit 196ec5f4a879eb3e1fc1818a4c2dd70a215882f1
Author: Robert Muir <rm...@apache.org>
AuthorDate: Wed Feb 5 20:29:59 2020 -0500

    LUCENE-9206: add forbidden api exclusion to new class
---
 lucene/misc/src/java/org/apache/lucene/misc/IndexMergeTool.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lucene/misc/src/java/org/apache/lucene/misc/IndexMergeTool.java b/lucene/misc/src/java/org/apache/lucene/misc/IndexMergeTool.java
index 1342a55..2a69acb 100644
--- a/lucene/misc/src/java/org/apache/lucene/misc/IndexMergeTool.java
+++ b/lucene/misc/src/java/org/apache/lucene/misc/IndexMergeTool.java
@@ -45,6 +45,7 @@ public class IndexMergeTool {
     "                          to execute only the merges according to the merge policy.\n" +
     " -verbose                 print additional details.\n";
 
+  @SuppressForbidden(reason = "System.err required (verbose mode): command line tool")
   static class Options {
     String mergedIndexPath;
     String indexPaths[];