Removed debug

This commit is contained in:
Garry Newman 2016-10-26 16:37:25 +01:00
parent 63fec3d627
commit b91b22a983

View File

@ -95,8 +95,6 @@ namespace Facepunch.Steamworks
Handle = workshop.ugc.CreateQueryAllUGCRequest( (SteamNative.UGCQuery)(int)Order, (SteamNative.UGCMatchingUGCType)(int)QueryType, UploaderAppId, AppId, (uint)_resultPage + 1 );
}
Console.WriteLine( "Handle: " + Handle.Value );
if ( !string.IsNullOrEmpty( SearchText ) )
workshop.ugc.SetSearchText( Handle, SearchText );
@ -113,8 +111,6 @@ namespace Facepunch.Steamworks
Callback.Handle = workshop.ugc.SendQueryUGCRequest( Handle );
Callback.OnResult = OnResult;
Console.WriteLine( "Callback.Handle: " + Callback.Handle.Value );
workshop.steamworks.AddCallResult( Callback );
}