ChangeNotes{Cache|State}: Change order of modifiers to follow JLS recommendation
Change-Id: If75cbb72ade8eb289d6146ebac66a15a63b04862
This commit is contained in:
@@ -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();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user