io.github.karlatemp.mxlib.common.utils.SystemUtils Maven / Gradle / Ivy
/*
* Copyright (c) 2018-2021 Karlatemp. All rights reserved.
* @author Karlatemp
*
* MXLib/MXLib.mxlib-common.main/SystemUtils.java
*
* Use of this source code is governed by the MIT license that can be found via the following link.
*
* https://github.com/Karlatemp/MxLib/blob/master/LICENSE
*/
package io.github.karlatemp.mxlib.common.utils;
import io.github.karlatemp.mxlib.utils.Lazy;
public class SystemUtils {
public static final Lazy JAVA_VERSION = Lazy.publication(() -> System.getProperty("java.version"));
}