Github user necouchman commented on a diff in the pull request:
https://github.com/apache/guacamole-client/pull/221#discussion_r161823935
--- Diff:
guacamole-ext/src/main/java/org/apache/guacamole/environment/LocalEnvironment.java
---
@@ -27,6 +27,8 @@
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
+
+import org.apache.guacamole.properties.BooleanGuacamoleProperty;
--- End diff --
Minor style detail - in general I think we try to keep the import
statements groups together and in mostly alphabetical order, and we don't tend
to put spaces in between different groups of imports. I don't have a
preference one way or the other, but, for consistency's sake, seems like we
should stick to that, here.
---