DescriptionUpdate Java checkstyle naming convention for static final fields.
Static final fields can either be "true" constants, e.g.
static final int HEIGHT_PX = 30;
static final String TAG = "MyClass"
or can have mutable state or not "feel" like a constant, e.g.
static final AtomicInteger sNextId;
static final Runnable sSuspendTask;
This allows either naming convention, FIELD_NAME or sFieldName, at the
programmer's discretion.
NOTRY=true
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=243316
Patch Set 1 #
Messages
Total messages: 5 (0 generated)
|