1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-12-12 08:01:08 +01:00

Remove superfluous trace

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@7142 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Thiago Camargo 2007-02-15 14:28:39 +00:00 committed by thiago
parent a4cc45f75d
commit 9d598f1398
7 changed files with 45 additions and 25 deletions

View file

@ -28,7 +28,6 @@ public class FixedResolver extends TransportResolver {
* @param port a port
*/
public void setFixedCandidate(String ip, int port) {
System.out.println("FIXED");
fixedCandidate = new TransportCandidate.Fixed(ip, port);
}

View file

@ -400,7 +400,7 @@ public class RTPBridge extends IQ {
return false;
}
System.out.println("service listing");
System.out.println("Service listing");
ServiceDiscoveryManager disco = ServiceDiscoveryManager
.getInstanceFor(xmppConnection);

View file

@ -207,7 +207,6 @@ public abstract class TransportNegotiator extends JingleNegotiator {
* @param offeredCandidate a transport candidates to check
*/
private void checkRemoteCandidate(final TransportCandidate offeredCandidate) {
System.out.println("CHECK");
offeredCandidate.addListener(new TransportResolverListener.Checker() {
public void candidateChecked(TransportCandidate cand,
final boolean validCandidate) {
@ -336,7 +335,6 @@ public abstract class TransportNegotiator extends JingleNegotiator {
*/
private void addRemoteCandidates(List rc) {
if (rc != null) {
System.out.println("SIZE OF LISTA: " + rc.size());
if (rc.size() > 0) {
for (Object aRc : rc) {
addRemoteCandidate((TransportCandidate) aRc);
@ -359,8 +357,6 @@ public abstract class TransportNegotiator extends JingleNegotiator {
while (iTrans.hasNext()) {
org.jivesoftware.smackx.packet.JingleTransport trans = (org.jivesoftware.smackx.packet.JingleTransport) iTrans.next();
System.out.println("LISTA SIZE: " + trans.getCandidatesCount());
Iterator iCand = trans.getCandidates();
while (iCand.hasNext()) {
JingleTransportCandidate cand = (JingleTransportCandidate) iCand

View file

@ -316,7 +316,6 @@ public abstract class TransportResolver {
*/
public Iterator getCandidates() {
synchronized (candidates) {
System.out.println("CNUM: " + candidates.size());
return Collections.unmodifiableList(new ArrayList(candidates)).iterator();
}
}