Commit 2805e5f8 authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Remove logs about unrecognized service protocol object types (#6278)

parent c4a86788
...@@ -95,6 +95,7 @@ class KeyboardHandle { ...@@ -95,6 +95,7 @@ class KeyboardHandle {
if (_attached) { if (_attached) {
assert(_keyboard._currentHandle == this); assert(_keyboard._currentHandle == this);
_attached = false; _attached = false;
//_keyboard.service.clearClient();
_keyboard._currentHandle = null; _keyboard._currentHandle = null;
_keyboard._scheduleHide(); _keyboard._scheduleHide();
} }
......
...@@ -190,8 +190,6 @@ abstract class ServiceObject { ...@@ -190,8 +190,6 @@ abstract class ServiceObject {
case 'Isolate': case 'Isolate':
serviceObject = new Isolate._empty(owner.vm); serviceObject = new Isolate._empty(owner.vm);
break; break;
default:
printTrace("Unsupported service object type: $type");
} }
if (serviceObject == null) { if (serviceObject == null) {
// If we don't have a model object for this service object type, as a // If we don't have a model object for this service object type, as a
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment