فهرست منبع

remove leftover debug code

Emmanuel Hansen 2 سال پیش
والد
کامیت
2dd48be45f
1فایلهای تغییر یافته به همراه0 افزوده شده و 4 حذف شده
  1. 0 4
      src/Browser/Avalonia.Browser/AvaloniaView.cs

+ 0 - 4
src/Browser/Avalonia.Browser/AvaloniaView.cs

@@ -322,7 +322,6 @@ namespace Avalonia.Browser
         private bool OnBeforeInput(JSObject arg, int start, int end)
         {
             var type = arg.GetPropertyAsString("inputType");
-            Console.WriteLine(type);
             if (type != "deleteByComposition")
             {
                 if (type == "deleteContentBackward")
@@ -349,7 +348,6 @@ namespace Avalonia.Browser
             if (_client == null)
                 return false;
 
-            Console.WriteLine("composition start");
             _client.SetPreeditText(null);
             IsComposing = true;
 
@@ -360,7 +358,6 @@ namespace Avalonia.Browser
         {
             if (_client == null)
                 return false;
-            Console.WriteLine("composition update");
 
             _client.SetPreeditText(args.GetPropertyAsString("data"));
 
@@ -372,7 +369,6 @@ namespace Avalonia.Browser
             if (_client == null)
                 return false;
 
-            Console.WriteLine("composition end");
             IsComposing = false;
             _client.SetPreeditText(null);
             _topLevelImpl.RawTextEvent(args.GetPropertyAsString("data")!);