Skip to content

Instantly share code, notes, and snippets.

View WillFP's full-sized avatar
Working

Will FP WillFP

Working
View GitHub Profile
@WillFP
WillFP / ScriptUtils.java
Created April 25, 2022 12:38
Simple java utility class to handle kts kotlin scripts
/**
* Utilities / API methods for kotlin scripts.
*/
public final class ScriptUtils {
/**
* The cache of compiled scripts.
*/
private static final Cache<ScriptToCompile, CompiledScript> COMPILED_SCRIPTS = Caffeine.newBuilder()
.build();