Fix checkstyle

This commit is contained in:
vanitasvitae 2017-08-22 16:12:50 +02:00
parent 50704c45f1
commit 8bd4954314
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 11 additions and 0 deletions

View File

@ -31,6 +31,7 @@ import org.jivesoftware.smackx.jingle.element.JingleContentDescriptionElement;
import org.jivesoftware.smackx.jingle.element.JingleContentDescriptionInfoElement; import org.jivesoftware.smackx.jingle.element.JingleContentDescriptionInfoElement;
import org.jivesoftware.smackx.jingle.element.JingleContentElement; import org.jivesoftware.smackx.jingle.element.JingleContentElement;
import org.jivesoftware.smackx.jingle.element.JingleElement; 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.JingleIBBTransport;
import org.jivesoftware.smackx.jingle.transport.jingle_ibb.element.JingleIBBTransportElement; import org.jivesoftware.smackx.jingle.transport.jingle_ibb.element.JingleIBBTransportElement;
import org.jivesoftware.smackx.jingle.util.Role; import org.jivesoftware.smackx.jingle.util.Role;
@ -130,6 +131,11 @@ public class JingleSessionTest extends SmackTestSuite {
public String getNamespace() { public String getNamespace() {
return NAMESPACE; return NAMESPACE;
} }
@Override
public void handleContentTerminate(JingleReasonElement.Reason reason) {
}
}; };
content.setDescription(description); content.setDescription(description);
@ -226,6 +232,11 @@ public class JingleSessionTest extends SmackTestSuite {
public String getNamespace() { public String getNamespace() {
return NAMESPACE; return NAMESPACE;
} }
@Override
public void handleContentTerminate(JingleReasonElement.Reason reason) {
}
}; };
content.setDescription(description); content.setDescription(description);