From 2935b4e4748c6d45383732410f92a4044a8d1084 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 21 Feb 2022 18:21:30 +0100 Subject: [PATCH] dcsd --- src/org/atriasoft/death/PropertiesInterface.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/atriasoft/death/PropertiesInterface.java b/src/org/atriasoft/death/PropertiesInterface.java index 8640781..d36a88e 100644 --- a/src/org/atriasoft/death/PropertiesInterface.java +++ b/src/org/atriasoft/death/PropertiesInterface.java @@ -201,7 +201,7 @@ public class PropertiesInterface { Double value = Double.valueOf(newValue); property.field.setDouble(tmp, value); } else if (property.types[0] == String.class) { - property.field.set(parameter, newValue); + property.field.set(tmp, newValue); } else { // Impossible case !!! Log.critical("Dead code");