Change the visibility of 'EOS_FLAG_BIT' or make it 'const' or 'readonly' #679
Labels
hacktoberfest-accepted
is:enhancement
New feature or request
up-for-grabs
This issue is open to be worked on by anyone
Milestone
Mentioned in #648
Specific issue: https://sonarcloud.io/project/issues?issues=AYRH0T92_qq9ReJdi431&open=AYRH0T92_qq9ReJdi431&id=apache_lucenenet
Make it const
Similar issues: https://sonarcloud.io/project/issues?resolved=false&rules=csharpsquid%3AS2223&id=apache_lucenenet
For
internal
members, try declaringprivate
. But a compile will be required to test whether that is valid (some fields may actually need to beinternal
).Public members should generally be made
const
if it is valid to do so, orstatic readonly
in other cases. Again, compiling is required to test whether that works.The text was updated successfully, but these errors were encountered: