mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-14 16:22:07 +01:00
Fix checkstyle
This commit is contained in:
parent
50704c45f1
commit
8bd4954314
1 changed files with 11 additions and 0 deletions
|
@ -31,6 +31,7 @@ import org.jivesoftware.smackx.jingle.element.JingleContentDescriptionElement;
|
|||
import org.jivesoftware.smackx.jingle.element.JingleContentDescriptionInfoElement;
|
||||
import org.jivesoftware.smackx.jingle.element.JingleContentElement;
|
||||
import org.jivesoftware.smackx.jingle.element.JingleElement;
|
||||
import org.jivesoftware.smackx.jingle.element.JingleReasonElement;
|
||||
import org.jivesoftware.smackx.jingle.transport.jingle_ibb.JingleIBBTransport;
|
||||
import org.jivesoftware.smackx.jingle.transport.jingle_ibb.element.JingleIBBTransportElement;
|
||||
import org.jivesoftware.smackx.jingle.util.Role;
|
||||
|
@ -130,6 +131,11 @@ public class JingleSessionTest extends SmackTestSuite {
|
|||
public String getNamespace() {
|
||||
return NAMESPACE;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void handleContentTerminate(JingleReasonElement.Reason reason) {
|
||||
|
||||
}
|
||||
};
|
||||
content.setDescription(description);
|
||||
|
||||
|
@ -226,6 +232,11 @@ public class JingleSessionTest extends SmackTestSuite {
|
|||
public String getNamespace() {
|
||||
return NAMESPACE;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void handleContentTerminate(JingleReasonElement.Reason reason) {
|
||||
|
||||
}
|
||||
};
|
||||
content.setDescription(description);
|
||||
|
||||
|
|
Loading…
Reference in a new issue