ChangeUtil: Perform some code clean ups

Remove exception declarations that aren't thrown and use utility method
to check for string emptiness.

Change-Id: Icbe4228624366b6d4d95c59d0d45f9820dd412a2
This commit is contained in:
David Ostrovsky
2014-10-24 09:00:32 +02:00
parent d3f5711aa1
commit effb2b9387
2 changed files with 7 additions and 9 deletions

View File

@@ -20,6 +20,7 @@ import static java.util.concurrent.TimeUnit.MINUTES;
import static java.util.concurrent.TimeUnit.SECONDS;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Strings;
import com.google.common.collect.ImmutableList;
import com.google.common.primitives.Ints;
import com.google.gerrit.common.TimeUtil;
@@ -375,14 +376,13 @@ public class ChangeUtil {
}
public Change.Id editCommitMessage(ChangeControl ctl, PatchSet ps,
String message, PersonIdent myIdent)
throws NoSuchChangeException, EmailException, OrmException,
MissingObjectException, IncorrectObjectTypeException, IOException,
InvalidChangeOperationException, PatchSetInfoNotAvailableException {
String message, PersonIdent myIdent) throws NoSuchChangeException,
OrmException, MissingObjectException, IncorrectObjectTypeException,
IOException, InvalidChangeOperationException {
Change change = ctl.getChange();
Change.Id changeId = change.getId();
if (message == null || message.length() == 0) {
if (Strings.isNullOrEmpty(message)) {
throw new InvalidChangeOperationException(
"The commit message cannot be empty");
}
@@ -565,4 +565,4 @@ public class ChangeUtil {
dst.setCharAt(o--, '0');
}
}
}
}