WT 1.1.13+2 double values fix
This commit is contained in:
@@ -125,9 +125,9 @@ class CustomerRepository with Logging {
|
||||
this.customer!.sex = sex;
|
||||
}
|
||||
|
||||
setWeight(int weight) {
|
||||
setWeight(double weight) {
|
||||
final propertyName = "Weight";
|
||||
this.setCustomerProperty(propertyName, weight.toDouble());
|
||||
this.setCustomerProperty(propertyName, weight);
|
||||
}
|
||||
|
||||
setHeight(int height) {
|
||||
|
||||
Reference in New Issue
Block a user