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
@@ -22,7 +22,7 @@ public enum YogaAlign {
|
||||
SPACE_BETWEEN(6),
|
||||
SPACE_AROUND(7);
|
||||
|
||||
private int mIntValue;
|
||||
private final int mIntValue;
|
||||
|
||||
YogaAlign(int intValue) {
|
||||
mIntValue = intValue;
|
||||
|
Reference in New Issue
Block a user