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.
This commit is contained in:
Michael Jumper
2022-01-23 11:56:25 -08:00
parent c079b31dd5
commit bba94c0f94

View File

@@ -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;
}