mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
[pubsub] Make Fillable(Configure|Subscribe)Form constructors package-private
Those are not meant to be used directly.
This commit is contained in:
parent
fec928ffe7
commit
9fd5bc7873
2 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ import org.jxmpp.jid.Jid;
|
|||
|
||||
public class FillableConfigureForm extends FillableForm implements ConfigureFormReader {
|
||||
|
||||
public FillableConfigureForm(DataForm dataForm) {
|
||||
FillableConfigureForm(DataForm dataForm) {
|
||||
super(dataForm);
|
||||
}
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ import org.jivesoftware.smackx.xdata.packet.DataForm;
|
|||
|
||||
public class FillableSubscribeForm extends FillableForm implements SubscribeFormReader {
|
||||
|
||||
public FillableSubscribeForm(DataForm dataForm) {
|
||||
FillableSubscribeForm(DataForm dataForm) {
|
||||
super(dataForm);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue