Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
minecrawler committed May 21, 2023
1 parent 60147ab commit afc4169
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/entity/entity-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class EntityBuilder implements IEntityBuilder {

constructor(
protected uuid?: TEntityId,
protected callback?: (entity: Entity) => void
protected callback?: (entity: Entity) => void,
) {}

build(): Entity {
Expand Down
2 changes: 1 addition & 1 deletion src/query/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export abstract class Query<DESC, DATA> implements IQuery<DESC, DATA> {
}

/** @internal */
[setEntitiesSym](entities: IterableIterator<Readonly<IEntity>>) {
[setEntitiesSym](entities: Readonly<IterableIterator<Readonly<IEntity>>>) {
let entity;

this.queryResult.clear();
Expand Down

0 comments on commit afc4169

Please sign in to comment.