Skip to content

Commit

Permalink
undo noisy, unrelated import ordering changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dconeybe committed Jan 5, 2024
1 parent 7be9012 commit 3afba98
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions packages/firestore/src/api/persistent_cache_index_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
*/

import {
FirestoreClient,
firestoreClientDeleteAllFieldIndexes,
firestoreClientDisablePersistentCacheIndexAutoCreation,
firestoreClientEnablePersistentCacheIndexAutoCreation
firestoreClientEnablePersistentCacheIndexAutoCreation,
FirestoreClient
} from '../core/firestore_client';
import { cast } from '../util/input_validation';
import { logDebug, logWarn } from '../util/log';
Expand Down
6 changes: 3 additions & 3 deletions packages/firestore/src/core/component_provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import {
IndexBackfillerScheduler
} from '../local/index_backfiller';
import {
IndexedDbPersistence,
indexedDbStoragePrefix
indexedDbStoragePrefix,
IndexedDbPersistence
} from '../local/indexeddb_persistence';
import { LocalStore } from '../local/local_store';
import { newLocalStore } from '../local/local_store_impl';
Expand All @@ -34,7 +34,7 @@ import {
MemoryLruDelegate,
MemoryPersistence
} from '../local/memory_persistence';
import { Persistence, Scheduler } from '../local/persistence';
import { Scheduler, Persistence } from '../local/persistence';
import { QueryEngine } from '../local/query_engine';
import {
ClientId,
Expand Down
2 changes: 1 addition & 1 deletion packages/firestore/src/local/local_store_impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ import {
newIndexOffsetSuccessorFromReadTime
} from '../model/field_index';
import {
Mutation,
mutationExtractBaseValue,
Mutation,
PatchMutation,
Precondition
} from '../model/mutation';
Expand Down
4 changes: 2 additions & 2 deletions packages/firestore/test/unit/local/index_backfiller.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ import {
import { Mutation } from '../../../src/model/mutation';
import { AsyncQueue } from '../../../src/util/async_queue';
import { newAsyncQueue } from '../../../src/util/async_queue_impl';
import * as Helpers from '../../util/helpers';
import { key, version } from '../../util/helpers';
import * as Helpers from '../../util/helpers';

import { CountingQueryEngine } from './counting_query_engine';
import * as PersistenceTestHelpers from './persistence_test_helpers';
import { JSON_SERIALIZER } from './persistence_test_helpers';
import * as PersistenceTestHelpers from './persistence_test_helpers';
import { TestDocumentOverlayCache } from './test_document_overlay_cache';
import { TestIndexManager } from './test_index_manager';

Expand Down
6 changes: 3 additions & 3 deletions packages/firestore/test/unit/local/local_store.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ import {
localStoreApplyRemoteEventToLocalCache,
localStoreExecuteQuery,
localStoreGetHighestUnacknowledgedBatchId,
localStoreGetNamedQuery,
localStoreGetTargetData,
localStoreGetNamedQuery,
localStoreHasNewerBundle,
localStoreWriteLocally,
LocalWriteResult,
localStoreNotifyLocalViewChanges,
localStoreReadDocument,
localStoreRejectBatch,
localStoreReleaseTarget,
localStoreSaveBundle,
localStoreSaveNamedQuery,
localStoreWriteLocally,
LocalWriteResult,
newLocalStore
} from '../../../src/local/local_store_impl';
import { LocalViewChanges } from '../../../src/local/local_view_changes';
Expand Down
12 changes: 6 additions & 6 deletions packages/firestore/test/unit/specs/spec_test_runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ import { User } from '../../../src/auth/user';
import { ComponentConfiguration } from '../../../src/core/component_provider';
import { DatabaseInfo } from '../../../src/core/database_info';
import {
addSnapshotsInSyncListener,
EventManager,
eventManagerListen,
eventManagerUnlisten,
Observer,
QueryListener,
removeSnapshotsInSyncListener
removeSnapshotsInSyncListener,
addSnapshotsInSyncListener
} from '../../../src/core/event_manager';
import {
canonifyQuery,
Expand All @@ -55,9 +55,9 @@ import { SyncEngine } from '../../../src/core/sync_engine';
import {
syncEngineGetActiveLimboDocumentResolutions,
syncEngineGetEnqueuedLimboDocumentResolutions,
syncEngineRegisterPendingWritesCallback,
syncEngineListen,
syncEngineLoadBundle,
syncEngineRegisterPendingWritesCallback,
syncEngineUnlisten,
syncEngineWrite
} from '../../../src/core/sync_engine_impl';
Expand Down Expand Up @@ -101,13 +101,13 @@ import { newTextEncoder } from '../../../src/platform/text_serializer';
import * as api from '../../../src/protos/firestore_proto_api';
import { ExistenceFilter } from '../../../src/remote/existence_filter';
import {
fillWritePipeline,
outstandingWrites,
RemoteStore,
fillWritePipeline,
remoteStoreDisableNetwork,
remoteStoreShutdown,
remoteStoreEnableNetwork,
remoteStoreHandleCredentialChange,
remoteStoreShutdown
outstandingWrites
} from '../../../src/remote/remote_store';
import { mapCodeFromRpcCode } from '../../../src/remote/rpc_error';
import {
Expand Down

0 comments on commit 3afba98

Please sign in to comment.