Merge branch 'stable-2.14' into stable-2.15

* stable-2.14:
  Fix changes not found
  Extract minimum length of a SHA-1 as a public constant

Change-Id: If1ab1cf7807cc791499e1210a2426831a7b5352a
This commit is contained in:
Hector Oswaldo Caballero
2017-10-18 22:56:58 -04:00
4 changed files with 5 additions and 4 deletions

View File

@@ -18,6 +18,7 @@ import com.google.gwtorm.client.Column;
/** A revision identifier for a file or a change. */
public final class RevId {
public static final int ABBREV_LEN = 7;
public static final int LEN = 40;
@Column(id = 1, length = LEN)