Skip to content

Commit

Permalink
fix(caserycrogers): export CharlatanResponseBuilder (MINOR) (#31)
Browse files Browse the repository at this point in the history
* fix(caserycrogers): export

* Removed unrecognized no doc annotations

* rollback changelog and yaml changes
  • Loading branch information
caseycrogers authored Jan 21, 2025
1 parent c6d0a16 commit ea96282
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions lib/charlatan.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export 'src/charlatan_response_definition.dart'
show
CharlatanHttpRequest,
CharlatanHttpResponse,
CharlatanResponseBuilder,
CharlatanRequestMatcher,
charlatanResponse,
requestMatchesAll,
Expand Down
4 changes: 2 additions & 2 deletions lib/src/charlatan.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import 'package:collection/collection.dart';
/// ```
/// {@endtemplate}
class Charlatan {
/// {@nodoc}
// ignore: public_member_api_docs
bool shouldLogErrors = true;

/// {@nodoc}
// ignore: public_member_api_docs
void silenceErrors() => shouldLogErrors = false;

final List<CharlatanResponseDefinition> _matchers = [];
Expand Down
1 change: 0 additions & 1 deletion lib/src/charlatan_http_client_adapter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ ${charlatan.toPrettyPrintedString()}
throw UnimplementedError(errorMessage);
}

/// {@nodoc}
@override
void close({bool force = false}) {}
}
Expand Down

0 comments on commit ea96282

Please sign in to comment.