Remove `print` in production code

pull/1280/head
Cierra_Runis 2 years ago
parent 450762419b
commit 12b0d4955e
No known key found for this signature in database
GPG Key ID: 6A879A1FDB3BF78
  1. 3
      lib/src/models/documents/nodes/leaf.dart

@ -268,11 +268,8 @@ class Embed extends Leaf {
]) { ]) {
final builders = embedBuilders; final builders = embedBuilders;
print('这里是 ${toString()}');
if (builders != null) { if (builders != null) {
for (final builder in builders) { for (final builder in builders) {
print('${builder.key} ${value.type}');
if (builder.key == value.type) { if (builder.key == value.type) {
return builder.toPlainText(this); return builder.toPlainText(this);
} }

Loading…
Cancel
Save