Merge "Implement RevisionNote#getOnlyEntity"
This commit is contained in:
commit
1ad4cf8fe3
@ -52,6 +52,13 @@ public abstract class RevisionNote<T> {
|
|||||||
return raw;
|
return raw;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@UsedAt(UsedAt.Project.PLUGIN_CHECKS)
|
||||||
|
public T getOnlyEntity() {
|
||||||
|
checkParsed();
|
||||||
|
checkState(entities.size() == 1, "expected exactly one entity");
|
||||||
|
return entities.get(0);
|
||||||
|
}
|
||||||
|
|
||||||
public ImmutableList<T> getEntities() {
|
public ImmutableList<T> getEntities() {
|
||||||
checkParsed();
|
checkParsed();
|
||||||
return entities;
|
return entities;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user