We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42551c6 commit 688bba7Copy full SHA for 688bba7
packages/dynamite/dynamite/lib/src/builder/resolve_object.dart
@@ -19,10 +19,6 @@ TypeResultObject resolveObject(
19
);
20
21
if (state.resolvedTypes.add(result)) {
22
- if (schema.allOf == null) {
23
- state.resolvedInterfaces.add(result);
24
- }
25
-
26
final $interface = buildInterface(
27
spec,
28
state,
packages/dynamite/dynamite/lib/src/builder/state.dart
@@ -11,7 +11,6 @@ class State {
11
12
final output = <Spec>[];
13
final resolvedTypes = <TypeResult>{};
14
- final resolvedInterfaces = <TypeResult>{};
15
final emitter = DartEmitter.scoped(
16
orderDirectives: true,
17
useNullSafetySyntax: true,
0 commit comments