diff --git a/infer/man/man1/infer-capture.txt b/infer/man/man1/infer-capture.txt index cdbd591c5..f053ae17d 100644 --- a/infer/man/man1/infer-capture.txt +++ b/infer/man/man1/infer-capture.txt @@ -134,10 +134,6 @@ BUCK FLAVORS OPTIONS Use this flag if infer doesn't find any files to analyze after a successful capture. (Conversely: --no-buck-merge-all-deps) - --capture-blacklist regex - Skip capture of files matched by the specified OCaml regular - expression (only supported by the javac integration for now). - --flavors Activates: Buck integration using the infer-capture-all Buck flavor (clang only). Use for clang-based Buck projects (as opposed @@ -257,6 +253,10 @@ JAVA OPTIONS --bootclasspath string Specify the Java bootclasspath + --capture-blacklist regex + Skip capture of files matched by the specified OCaml regular + expression (only supported by the javac integration for now). + --dependencies Activates: Translate all the dependencies during the capture. The classes in the given jar file will be translated. No sources diff --git a/infer/man/man1/infer-run.txt b/infer/man/man1/infer-run.txt index b909424f4..7470bc714 100644 --- a/infer/man/man1/infer-run.txt +++ b/infer/man/man1/infer-run.txt @@ -179,15 +179,15 @@ BUCK FLAVORS OPTIONS Skip capture of files matched by the specified regular expression (only the "flavors (C++)" Buck integration is supported, not Java). - - --capture-blacklist regex - Skip capture of files matched by the specified OCaml regular - expression (only supported by the javac integration for now). CLANG OPTIONS --compute-analytics Activates: Emit analytics as info-level issues, like component kit line count and component kit file cyclomatic complexity (Conversely: --no-compute-analytics) +JAVA OPTIONS + --capture-blacklist regex + Skip capture of files matched by the specified OCaml regular + expression (only supported by the javac integration for now). ENVIRONMENT diff --git a/infer/src/base/Config.ml b/infer/src/base/Config.ml index 6b20d6919..781f7d204 100644 --- a/infer/src/base/Config.ml +++ b/infer/src/base/Config.ml @@ -928,7 +928,7 @@ and capture = and capture_blacklist = CLOpt.mk_string_opt ~long:"capture-blacklist" - ~in_help:InferCommand.[(Run, manual_buck_flavors); (Capture, manual_buck_flavors)] + ~in_help:InferCommand.[(Run, manual_java); (Capture, manual_java)] ~meta:"regex" "Skip capture of files matched by the specified OCaml regular expression (only supported by \ the javac integration for now)."