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:
David Pursehouse
2015-11-20 13:50:36 +09:00
6 changed files with 32 additions and 29 deletions

View File

@@ -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() {
}

View File

@@ -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) {

View File

@@ -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();
}