Skip to content

Commit

Permalink
Revert incorrect changes to release tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaffiro committed May 3, 2024
1 parent b9c2b80 commit 1313a60
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,8 @@ export class ConsensusQueueFactory implements IConsensusOrderedCollectionFactory
static readonly Attributes: IChannelAttributes;
// (undocumented)
get attributes(): IChannelAttributes;
// @alpha (undocumented)
// (undocumented)
create(document: IFluidDataStoreRuntime, id: string): IConsensusOrderedCollection;
// @alpha
load(runtime: IFluidDataStoreRuntime, id: string, services: IChannelServices, attributes: IChannelAttributes): Promise<IConsensusOrderedCollection>;
// (undocumented)
static Type: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export class ConsensusQueueFactory implements IConsensusOrderedCollectionFactory

/**
* {@inheritDoc @fluidframework/datastore-definitions#IChannelFactory.load}
* @alpha
*/
public async load(
runtime: IFluidDataStoreRuntime,
Expand All @@ -48,9 +47,6 @@ export class ConsensusQueueFactory implements IConsensusOrderedCollectionFactory
return collection;
}

/**
* @alpha
*/
public create(document: IFluidDataStoreRuntime, id: string): IConsensusOrderedCollection {
const collection = new ConsensusQueue(id, document, this.attributes);
collection.initializeLocal();
Expand Down

0 comments on commit 1313a60

Please sign in to comment.