Summary: Add a new command-line option `--external-java-packages` which allows the user to specify a list of Java package prefixes for external packages. Then the analysis will not report non-actionable warnings on those packages (e.g., inconsistent `Nullable` annotations in external packages). Reviewed By: jeremydubreil Differential Revision: D7126960 fbshipit-source-id: c4f3c7cmaster
parent
9f343853ec
commit
56872d8126
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright (c) 2018 - present Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
package external.library;
|
||||
|
||||
|
||||
public class SomeClass {
|
||||
public Object field;
|
||||
}
|
Loading…
Reference in new issue