ilya-klyuchnikov / faba

Fast Bytecode Analysis
15 stars 1 forks source link

Conservative nullable #31

Closed ilya-klyuchnikov closed 10 years ago

ilya-klyuchnikov commented 10 years ago

Handles the problem of false positive @Nullable methods in cases when the result is a delegated call to a method that can be overridden. More conservative analysis doesn't handle call to this.someVirtualMethod(...) as a stable call. In this mode ThreadLocal.get() is not marked as @Nullable anymore.