From 109caa2be396bdfe84ef63ec808826e3244e360c Mon Sep 17 00:00:00 2001 From: jclausen Date: Fri, 7 Jun 2024 15:58:00 -0400 Subject: [PATCH] allow protected access to BIFMethods for compat module --- .../ortus/boxlang/runtime/bifs/global/temporal/TimeUnits.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/TimeUnits.java b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/TimeUnits.java index 12482697e..22b96ee27 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/TimeUnits.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/TimeUnits.java @@ -94,7 +94,7 @@ public class TimeUnits extends BIF { public static final String DOW_SHORT_FORMAT = "eee"; public static final String DOW_LONG_FORMAT = "eeee"; - static final class BIFMethods { + protected static final class BIFMethods { public static final Key quarter = Key.quarter; public static final Key month = Key.month;