Skip to content

Commit

Permalink
Merge pull request #17 from ricardoboss/issues/6-backing-store-continued
Browse files Browse the repository at this point in the history
Made backing store factory singleton writable
  • Loading branch information
baywet authored Mar 20, 2024
2 parents 0880f55 + 5ff6532 commit 9863fbf
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/src/store/backing_store_factory_singleton.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ part of '../../kiota_abstractions.dart';

/// This class is used to register the backing store factory.
class BackingStoreFactorySingleton {
static final BackingStoreFactory _instance = InMemoryBackingStoreFactory();

/// The backing store factory singleton instance.
static BackingStoreFactory get instance => _instance;
static BackingStoreFactory instance = InMemoryBackingStoreFactory();
}

0 comments on commit 9863fbf

Please sign in to comment.