Skip to content

Commit a753bcd

Browse files
committed
refactor: "purify" in memory entity set, remove mixins
1 parent dae6fdf commit a753bcd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/entity/set.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@ import _ from "underscore";
22
import {mix} from "mixwith";
33

44
import { InMemoryEntity } from "./in_memory";
5-
import {NamedEntityMixin, TaggableMixin } from "./mixins";
65
import {InMemoryEntitySetMixin, InMemoryEntityInSetMixin } from "./set/mixins";
76

87
export class InMemoryEntitySet extends mix(InMemoryEntity).with(
98
InMemoryEntitySetMixin,
109
InMemoryEntityInSetMixin,
11-
NamedEntityMixin,
12-
TaggableMixin,
10+
1311
) {
1412

1513
get isEntitySet() {return this.prop('isEntitySet')}

0 commit comments

Comments
 (0)