kotlin
kotlin copied to clipboard
Speed up checkStatisticsEnabled check
Project.getProperties() can be very expensive on large projects, it is much better to call Project.findProperty(String) as that only retrieves that single property as opposed to returning all in a synchronized way.