Skip to content

Commit

Permalink
feat: fix int store factory name
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Oct 24, 2024
1 parent e57ff32 commit 1408a5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions app_cv_sembast/lib/src/app_cv_sembast.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ export 'db_record.dart'
export 'db_store.dart'
show
cvIntStoreFactory,
cvIntRecordFactory, // tmp
cvStringStoreFactory,
cvStringRecordFactory, // tmp
CvStoreFactory,
CvIntStoreFactory,
CvStringStoreFactory;
Expand Down
4 changes: 2 additions & 2 deletions app_cv_sembast/lib/src/db_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ abstract class CvStoreFactory<K> {
// class CvStoreFactoryBase<K> with CvStoreFactoryMixin<K> {}

/// common `<int, Map<String, Object?>>` factory
// @Deprecated('Use cvIntStoreFactory instead')
@Deprecated('Use cvIntStoreFactory instead')
final cvIntRecordFactory = cvIntStoreFactory;

/// common `<String, Map<String, Object?>>` factory
// @Deprecated('Use cvStringStoreFactory instead')
@Deprecated('Use cvStringStoreFactory instead')
final cvStringRecordFactory = cvStringStoreFactory;

/// common `<int, Map<String, Object?>>` factory
Expand Down

0 comments on commit 1408a5f

Please sign in to comment.