rspec/rules/S3010/description.adoc

4 lines
249 B
Plaintext
Raw Normal View History

Assigning a value to a ``++static++`` field in a constructor could cause unreliable behavior at runtime since it will change the value for all instances of the class.
2020-06-30 12:48:39 +02:00
Instead remove the field's ``++static++`` modifier, or initialize it statically.