Browse Source

Merge pull request #9003 from AvaloniaUI/fixes/remove-leftover-console-writeline

Removed leftover debug code
Blaz
Max Katz 4 years ago
committed by GitHub
parent
commit
e57e0b76fc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/Avalonia.Base/Rendering/Composition/Compositor.cs

6
src/Avalonia.Base/Rendering/Composition/Compositor.cs

@ -47,11 +47,7 @@ namespace Avalonia.Rendering.Composition
{
Loop = loop;
_server = new ServerCompositor(loop, gpu, _batchObjectPool, _batchMemoryPool);
_commit = () =>
{
Console.WriteLine("Dispatcher:Commit");
Commit();
};
_commit = () => Commit();
DefaultEasing = new CubicBezierEasing(new Point(0.25f, 0.1f), new Point(0.25f, 1f));
}

Loading…
Cancel
Save