ChangeNotes{Cache|State}: Change order of modifiers to follow JLS recommendation

Change-Id: If75cbb72ade8eb289d6146ebac66a15a63b04862
This commit is contained in:
David Pursehouse
2016-06-06 14:21:40 +09:00
parent c63e2d26dd
commit 604de983c7
2 changed files with 3 additions and 3 deletions

View File

@@ -55,14 +55,14 @@ class ChangeNotesCache {
} }
@AutoValue @AutoValue
static abstract class Key { abstract static class Key {
abstract Project.NameKey project(); abstract Project.NameKey project();
abstract Change.Id changeId(); abstract Change.Id changeId();
abstract ObjectId id(); abstract ObjectId id();
} }
@AutoValue @AutoValue
static abstract class Value { abstract static class Value {
abstract ChangeNotesState state(); abstract ChangeNotesState state();
/** /**

View File

@@ -129,7 +129,7 @@ abstract class ChangeNotesState {
* Fields are in listed column order. * Fields are in listed column order.
*/ */
@AutoValue @AutoValue
static abstract class ChangeColumns { abstract static class ChangeColumns {
abstract Change.Key changeKey(); abstract Change.Key changeKey();
abstract Timestamp createdOn(); abstract Timestamp createdOn();
abstract Timestamp lastUpdatedOn(); abstract Timestamp lastUpdatedOn();