We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unused local variable inside Factories that can make CI findbug hooks complain:
public AndroidAccountIntents createInstance(Scope scope) { scope = getTargetScope(scope); AndroidAccountIntents androidAccountIntents = new AndroidAccountIntents(); return androidAccountIntents; }
Only happens when scope is not used. Can we avoid that?
The text was updated successfully, but these errors were encountered:
for documentation: this is how to suppress for now:
<Match> <!-- AUTO-GENERATED FILE --> <Class name="~.*\$\$Factory" /> <Bug pattern="DLS_DEAD_LOCAL_STORE" /> </Match>
Sorry, something went wrong.
Thx for the workaround @dpreussler, but we are gonna fix this.
Changing factory to get the target scope only when needed. Solves #111
b95395a
2adc86d
Will be part of RC10
stephanenicolas
No branches or pull requests
Unused local variable inside Factories that can make CI findbug hooks complain:
Only happens when scope is not used. Can we avoid that?
The text was updated successfully, but these errors were encountered: