Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed unused 'timeout' from command class #9

Merged
merged 1 commit into from
May 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.0.15

* Removed unused 'timeout' from command class
* added unit tests

## 0.0.14

* Fixed NotificationEventExtension
Expand Down
4 changes: 0 additions & 4 deletions lib/src/protocol/command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ class Command extends Envelope {
/// Indicates a reason for the status
Reason? reason;

// Indicates that the command returned timeout
bool? timeout;

/// Initializes a new instance of the Command class.
Command({
final String? id,
Expand All @@ -50,7 +47,6 @@ class Command extends Envelope {
this.resource,
this.status,
this.type,
this.timeout,
}) : super(id: id ?? guid(), from: from, to: to, pp: pp, metadata: metadata);

/// Allows converting a [Command] object to a [Map] collection of key/value pairs
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: lime
description: LIME Protocol for Dart/Flutter - A lightweight messaging library
version: 0.0.14
version: 0.0.15
homepage: https://limeprotocol.org/
repository: https://github.com/takenet/lime-dart

Expand Down