Skip to content

Commit

Permalink
fix: Remove print from deleteBoxFromDisk (#1015)
Browse files Browse the repository at this point in the history
This print looks unnecessary and spams "null" into our production app
  • Loading branch information
krille-chan authored Jun 30, 2022
1 parent 1d1bdd8 commit 18b0eea
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion hive/lib/src/hive_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ class HiveImpl extends TypeRegistryImpl implements HiveInterface {
{String? path, String? collection}) async {
var lowerCaseName = name.toLowerCase();
var box = _boxes[lowerCaseName];
print(box);
if (box != null) {
await box.deleteFromDisk();
} else {
Expand Down

0 comments on commit 18b0eea

Please # to comment.