PatchSetUtil: Remove static modifier from setGroups method
The method is only called on instances of PatchSetUtil, and does not reference any static members, so does not need to be static. Change-Id: Idc3b96569dc07ad9d93956043dff18d51eb7207e
This commit is contained in:
@@ -173,7 +173,7 @@ public class PatchSetUtil {
|
||||
}
|
||||
}
|
||||
|
||||
public static void setGroups(ReviewDb db, ChangeUpdate update, PatchSet ps, List<String> groups)
|
||||
public void setGroups(ReviewDb db, ChangeUpdate update, PatchSet ps, List<String> groups)
|
||||
throws OrmException {
|
||||
ps.setGroups(groups);
|
||||
update.setGroups(groups);
|
||||
|
Reference in New Issue
Block a user