mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-12-12 22:11:07 +01:00
Bump "Error Prone" to 2.0.15
and fix a few things :)
This commit is contained in:
parent
ef0af66b21
commit
4c646436a5
246 changed files with 1122 additions and 124 deletions
|
|
@ -317,14 +317,17 @@ public class StreamInitiation extends IQ {
|
|||
return isRanged;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getElementName() {
|
||||
return "file";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getNamespace() {
|
||||
return "http://jabber.org/protocol/si/profile/file-transfer";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toXML() {
|
||||
StringBuilder buffer = new StringBuilder();
|
||||
|
||||
|
|
@ -370,7 +373,7 @@ public class StreamInitiation extends IQ {
|
|||
* @author Alexander Wenckus
|
||||
*
|
||||
*/
|
||||
public class Feature implements ExtensionElement {
|
||||
public static class Feature implements ExtensionElement {
|
||||
|
||||
private final DataForm data;
|
||||
|
||||
|
|
@ -392,14 +395,17 @@ public class StreamInitiation extends IQ {
|
|||
return data;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getNamespace() {
|
||||
return "http://jabber.org/protocol/feature-neg";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getElementName() {
|
||||
return "feature";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toXML() {
|
||||
StringBuilder buf = new StringBuilder();
|
||||
buf
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue