Skip to content

Commit

Permalink
refactor: remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed May 6, 2021
1 parent 86945d9 commit 9d9947e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/cache.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Cache {
Map<CacheKey, List<DateTime>> get results => _results;

void add(CacheKey key, List<DateTime> data) {
_results[key]= data;
_results[key] = data;
}

List<DateTime>? get(CacheKey key) {
Expand Down
1 change: 0 additions & 1 deletion lib/src/recurrence_rule.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'dart:collection';
import 'dart:math';

import 'package:collection/collection.dart';
import 'package:meta/meta.dart';
Expand Down

0 comments on commit 9d9947e

Please sign in to comment.