Skip to content

Commit 18b0eea

Browse files
authored
fix: Remove print from deleteBoxFromDisk (#1015)
This print looks unnecessary and spams "null" into our production app
1 parent 1d1bdd8 commit 18b0eea

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

hive/lib/src/hive_impl.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,6 @@ class HiveImpl extends TypeRegistryImpl implements HiveInterface {
226226
{String? path, String? collection}) async {
227227
var lowerCaseName = name.toLowerCase();
228228
var box = _boxes[lowerCaseName];
229-
print(box);
230229
if (box != null) {
231230
await box.deleteFromDisk();
232231
} else {

0 commit comments

Comments
 (0)