Sfoglia il codice sorgente

[cpp] remove debug

Hugh Sanderson 12 anni fa
parent
commit
f24cd0cc16
1 ha cambiato i file con 0 aggiunte e 2 eliminazioni
  1. 0 2
      std/cpp/net/Poll.hx

+ 0 - 2
std/cpp/net/Poll.hx

@@ -47,9 +47,7 @@ class Poll {
 
 	public function poll( a : Array<Socket>, ?t : Float ) : Array<Socket> {
 		if (t==null) t=-1.0;
-trace("Poll " + a + " / " + t);
 		var read:Array<Dynamic> = socket_poll(a,mPollHandle,t);
-trace("Got " + read);
 		// Convert to array of sockets...
 		var result = new Array<Socket>();
 		if (read!=null && read.length>0) {