Mark model fields final
Summary: These are already considered immutable, but not marked in their class. Reviewed By: emilsjolander Differential Revision: D6759564 fbshipit-source-id: 810dc8a9730fb330760d2aedecafcea81cf25cb1
This commit is contained in:
committed by
Facebook Github Bot
parent
42778f687b
commit
80f8aa3c7e
@@ -17,7 +17,7 @@ public enum YogaOverflow {
|
||||
HIDDEN(1),
|
||||
SCROLL(2);
|
||||
|
||||
private int mIntValue;
|
||||
private final int mIntValue;
|
||||
|
||||
YogaOverflow(int intValue) {
|
||||
mIntValue = intValue;
|
||||
|
Reference in New Issue
Block a user