Merge branch 'stable-2.12'
* stable-2.12: Buck: Remove non working local_jar rule and documentation CurrentSchemaVersion: Allow to use it in plugins Use REST implementation to list members for label with group operator Fix wrong date/time for commits in refs/users/default branch InitAdminUser: Don't assume the group ID of the Administrators group Move sendemail.allowRegisterNewEmail to auth.allowRegisterNewEmail Update 2.12 release notes Update 2.12 release notes Fix query for changes using a label with a group operator. Add !important back to .cm-searching and .cm-trailingspace HttpPluginServlet: Fix "short read of block" IO error on plugin docs HttpPluginServlet: Use try-with-resource in readWholeEntry StaticModule: Remove unused import Brings Gerrit docs back to life Correct docs since --name is not a valid option for create-project Make InternalChangeQuery.query public so it can be used by plugins InitPlugins: Suggest to upgrade installed plugins per default Change-Id: I2d2d6c5e695e2c331d71853f03a96b0203b9d04b Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
@@ -26,7 +26,7 @@ public final class CurrentSchemaVersion {
|
||||
private static final String VALUE = "X";
|
||||
|
||||
@Column(id = 1, length = 1)
|
||||
protected String one = VALUE;
|
||||
public String one = VALUE;
|
||||
|
||||
public Key() {
|
||||
}
|
||||
@@ -50,12 +50,12 @@ public final class CurrentSchemaVersion {
|
||||
}
|
||||
|
||||
@Column(id = 1)
|
||||
protected Key singleton;
|
||||
public Key singleton;
|
||||
|
||||
/** Current version number of the schema. */
|
||||
@Column(id = 2)
|
||||
public transient int versionNbr;
|
||||
|
||||
protected CurrentSchemaVersion() {
|
||||
public CurrentSchemaVersion() {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user