From bba94c0f94913f667f74e04df45527a0d55aa3d0 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sun, 23 Jan 2022 11:56:25 -0800 Subject: [PATCH] GUACAMOLE-1511: Revert incorrect recursive constructor invocation. A previous iteration of the whitespace-trimming changes involved an additional constructor variation. After removing that portion, the original constructor for PropertiesGuacamoleProperties was not restored correctly, and now recursively invokes itself. --- .../guacamole/properties/PropertiesGuacamoleProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole-ext/src/main/java/org/apache/guacamole/properties/PropertiesGuacamoleProperties.java b/guacamole-ext/src/main/java/org/apache/guacamole/properties/PropertiesGuacamoleProperties.java index 19afa8135..cf923310d 100644 --- a/guacamole-ext/src/main/java/org/apache/guacamole/properties/PropertiesGuacamoleProperties.java +++ b/guacamole-ext/src/main/java/org/apache/guacamole/properties/PropertiesGuacamoleProperties.java @@ -44,7 +44,7 @@ public class PropertiesGuacamoleProperties implements GuacamoleProperties { * values exposed by this instance of PropertiesGuacamoleProperties. */ public PropertiesGuacamoleProperties(Properties properties) { - this(properties); + this.properties = properties; }