[pubsub] Add missing "FillableSubscribeForm SubscribeForm.getFillableForm()"

This commit is contained in:
Florian Schmaus 2020-05-15 11:51:40 +02:00
parent 565397f632
commit fec928ffe7
1 changed files with 4 additions and 0 deletions

View File

@ -26,4 +26,8 @@ public class SubscribeForm extends Form implements SubscribeFormReader {
ensureFormType(dataForm, FORM_TYPE);
}
@Override
public FillableSubscribeForm getFillableForm() {
return new FillableSubscribeForm(getDataForm());
}
}