mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-09 00:59:39 +02:00
Enable RedundantModifier checkstyle check
This commit is contained in:
parent
193688e553
commit
b5209f4701
36 changed files with 86 additions and 85 deletions
|
@ -75,8 +75,8 @@ public abstract class JingleMediaManager {
|
|||
* @param local
|
||||
* @return the media session
|
||||
*/
|
||||
public abstract JingleMediaSession createMediaSession(PayloadType payloadType, final TransportCandidate remote,
|
||||
final TransportCandidate local, JingleSession jingleSession);
|
||||
public abstract JingleMediaSession createMediaSession(PayloadType payloadType, TransportCandidate remote,
|
||||
TransportCandidate local, JingleSession jingleSession);
|
||||
|
||||
// This is to set the attributes of the <content> element of the Jingle packet.
|
||||
public String getName() {
|
||||
|
|
|
@ -83,7 +83,7 @@ public class HttpServer {
|
|||
OutputStream output;
|
||||
BufferedReader br;
|
||||
|
||||
public HttpRequestHandler(Socket socket) throws Exception {
|
||||
HttpRequestHandler(Socket socket) throws Exception {
|
||||
this.socket = socket;
|
||||
this.input = socket.getInputStream();
|
||||
this.output = socket.getOutputStream();
|
||||
|
|
|
@ -82,7 +82,7 @@ public abstract class JingleTransportProvider extends ExtensionElementProvider<J
|
|||
return trans;
|
||||
}
|
||||
|
||||
protected abstract JingleTransportCandidate parseCandidate(final XmlPullParser parser);
|
||||
protected abstract JingleTransportCandidate parseCandidate(XmlPullParser parser);
|
||||
|
||||
/**
|
||||
* RTP-ICE profile.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue