Github user danielsun1106 commented on the pull request:

    
https://github.com/apache/groovy/commit/5443e87882f9b88169876f6d043ed54b5ae9023b#commitcomment-28569390
  
    In src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java:
    In src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java on 
line 951:
    We can refine it further ;-)
    
    The implementation of `Boolean.getBoolean` has `try-catch` already:
    ```java
        public static boolean getBoolean(String name) {
            boolean result = false;
            try {
                result = parseBoolean(System.getProperty(name));
            } catch (IllegalArgumentException | NullPointerException e) {
            }
            return result;
        }
    ```


---

Reply via email to