Merge branch 'stable-2.11' into stable-2.12
* stable-2.11: SiteIndexer: Always scan changes from repo/db Make JdbcUtil#port() public Allow to use GWTORM Key classes in plugins Change-Id: I90edcb6a930e9125e1a56d19d1765d502eaf25ab
This commit is contained in:
@@ -99,7 +99,7 @@ public final class Change {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(id = 1)
|
||||
protected int id;
|
||||
public int id;
|
||||
|
||||
protected Id() {
|
||||
}
|
||||
|
||||
@@ -23,9 +23,9 @@ public class LabelId extends StringKey<com.google.gwtorm.client.Key<?>> {
|
||||
public static final LabelId SUBMIT = new LabelId("SUBM");
|
||||
|
||||
@Column(id = 1)
|
||||
protected String id;
|
||||
public String id;
|
||||
|
||||
protected LabelId() {
|
||||
public LabelId() {
|
||||
}
|
||||
|
||||
public LabelId(final String n) {
|
||||
|
||||
@@ -77,12 +77,12 @@ public final class PatchSet {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Column(id = 1)
|
||||
protected Change.Id changeId;
|
||||
public Change.Id changeId;
|
||||
|
||||
@Column(id = 2)
|
||||
protected int patchSetId;
|
||||
public int patchSetId;
|
||||
|
||||
protected Id() {
|
||||
public Id() {
|
||||
changeId = new Change.Id();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user