Skip to content

Commit

Permalink
Made backing store factory singleton writable
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoboss committed Mar 20, 2024
1 parent 0880f55 commit 5ff6532
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 5ff6532

Please sign in to comment.