From 2d9dd077e67b7ed61db9b0702be983e3be867c7c Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Tue, 14 Feb 2017 16:50:46 -0800 Subject: [PATCH] Remove public. --- .../src/main/kotlin/com/beust/kobalt/SystemProperties.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/SystemProperties.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/SystemProperties.kt index b7877264..b003aa9f 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/SystemProperties.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/SystemProperties.kt @@ -1,6 +1,6 @@ package com.beust.kobalt -public class SystemProperties { +class SystemProperties { companion object { val javaBase = System.getProperty("java.home") ?: (System.getenv("JAVA_HOME") ?: throw IllegalArgumentException("JAVA_HOME not defined"))