Fix checkstyle warnings about modifier order

Change-Id: I7babc855b9b52c0e85b53fa6fad6fe1b592bda28
This commit is contained in:
David Pursehouse 2015-07-06 18:44:24 +09:00
parent 794ac19fd9
commit ed418c1974
2 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ public class ProtobufImport extends SiteProgram {
} }
@AutoValue @AutoValue
static abstract class Relation { abstract static class Relation {
private static Relation create(RelationModel model, ReviewDb db) private static Relation create(RelationModel model, ReviewDb db)
throws IllegalAccessException, InvocationTargetException, throws IllegalAccessException, InvocationTargetException,
NoSuchMethodException, ClassNotFoundException { NoSuchMethodException, ClassNotFoundException {

View File

@ -266,7 +266,7 @@ class WalkSorter {
} }
@AutoValue @AutoValue
static abstract class PatchSetData { abstract static class PatchSetData {
@VisibleForTesting @VisibleForTesting
static PatchSetData create(ChangeData cd, PatchSet ps, RevCommit commit) { static PatchSetData create(ChangeData cd, PatchSet ps, RevCommit commit) {
return new AutoValue_WalkSorter_PatchSetData(cd, ps, commit); return new AutoValue_WalkSorter_PatchSetData(cd, ps, commit);