Skip to content

Commit

Permalink
chore: @internal annotation on subject + unneccessary imports fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arxdeus committed Mar 4, 2025
1 parent 7eebb49 commit 193c593
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions packages/modulisto/lib/src/adapter/stream/subject.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import 'dart:async';

import 'package:meta/meta.dart';

@internal
class Subject<T> implements StreamController<T> {
Subject({
T? initialValue,
Expand Down
1 change: 0 additions & 1 deletion packages/modulisto/test/adapter_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import 'dart:math';

import 'package:modulisto/modulisto.dart';
import 'package:modulisto/src/adapter/stream/subject.dart';
import 'package:modulisto/src/adapter/stream/subject_adapter.dart';
import 'package:test/test.dart';

import 'util/mock_module.dart';
Expand Down

0 comments on commit 193c593

Please sign in to comment.