Skip to content

Commit

Permalink
Fixed analysis issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jpeiffer committed Feb 20, 2024
1 parent a906d6c commit 9b7b09c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [3.1.6] - February 20th, 2024

* Automated dependency updates


## [3.1.5+5] - January 30, 2024

* Automated dependency updates
Expand Down
4 changes: 2 additions & 2 deletions lib/src/expressions/expressions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class Literal extends SimpleExpression {
int get hashCode => value.hashCode;

@override
bool operator ==(dynamic other) => other is Literal && other.value == value;
bool operator ==(Object other) => other is Literal && other.value == value;
}

class Variable extends SimpleExpression {
Expand Down Expand Up @@ -158,7 +158,7 @@ class BinaryExpression extends CompoundExpression {
int get hashCode => hash3(left, operator, right);

@override
bool operator ==(dynamic other) =>
bool operator ==(Object other) =>
other is BinaryExpression &&
other.left == left &&
other.operator == operator &&
Expand Down
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: 'template_expressions'
description: 'A Dart library to process string based templates using expressions.'
homepage: 'https://github.com/peiffer-innovations/template_expressions'
version: '3.1.5+5'
version: '3.1.6'

environment:
environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
dependencies:
convert: '^3.1.1'
crypto: '^3.0.1'
encrypt: '^5.0.3'
Expand All @@ -22,11 +22,11 @@ dependencies:
rxdart: '^0.27.7'
yaon: '^1.1.4+4'

dev_dependencies:
dev_dependencies:
flutter_lints: '^3.0.1'
test: '^1.25.2'

ignore_updates:
ignore_updates:
- 'archive'
- 'async'
- 'boolean_selector'
Expand Down

0 comments on commit 9b7b09c

Please sign in to comment.